diff options
| author | Joel de Vahl <joel@stalverk80.se> | 2007-10-04 09:49:38 +0000 |
|---|---|---|
| committer | Joel de Vahl <joel@stalverk80.se> | 2007-10-04 09:49:38 +0000 |
| commit | 855f16c18b724b0e88b495b78a5a5852617958f9 (patch) | |
| tree | 5856e3777f63c416f0fb64f0413fea649190d909 /src/engine/system.h | |
| parent | 34005785af5c7bd42ffb48f57b883d4f100aca35 (diff) | |
| download | zcatch-855f16c18b724b0e88b495b78a5a5852617958f9.tar.gz zcatch-855f16c18b724b0e88b495b78a5a5852617958f9.zip | |
win32 fixes for the lock
Diffstat (limited to 'src/engine/system.h')
| -rw-r--r-- | src/engine/system.h | 2 |
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); |