about summary refs log tree commit diff
path: root/src/engine/system.h
diff options
context:
space:
mode:
authorJoel de Vahl <joel@stalverk80.se>2007-10-04 09:49:38 +0000
committerJoel de Vahl <joel@stalverk80.se>2007-10-04 09:49:38 +0000
commit855f16c18b724b0e88b495b78a5a5852617958f9 (patch)
tree5856e3777f63c416f0fb64f0413fea649190d909 /src/engine/system.h
parent34005785af5c7bd42ffb48f57b883d4f100aca35 (diff)
downloadzcatch-855f16c18b724b0e88b495b78a5a5852617958f9.tar.gz
zcatch-855f16c18b724b0e88b495b78a5a5852617958f9.zip
win32 fixes for the lock
Diffstat (limited to 'src/engine/system.h')
-rw-r--r--src/engine/system.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/system.h b/src/engine/system.h
index fe866cdc..5c3fa394 100644
--- a/src/engine/system.h
+++ b/src/engine/system.h
@@ -292,7 +292,7 @@ int thread_wait(); /* NOT IMPLEMENTED */
 void thread_sleep(int milliseconds);
 
 /**** Group: Locks ****/
-typedef struct LOCKINTERNAL *LOCK;
+typedef void* LOCK;
 
 LOCK lock_create();
 void lock_destroy(LOCK lock);