Mercurial > sdl-ios-xcode
comparison src/thread/windows/SDL_syssem.c @ 5088:c2539ff054c8
Fixed compiling on Windows Mobile SDK 5.0 with Visual Studio 2008
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 24 Jan 2011 15:46:11 -0800 |
parents | e8916fe9cfc8 |
children | 327f181542f1 |
comparison
equal
deleted
inserted
replaced
5087:e7680e2c9f3c | 5088:c2539ff054c8 |
---|---|
37 #if defined(_WIN32_WCE) && (_WIN32_WCE < 300) | 37 #if defined(_WIN32_WCE) && (_WIN32_WCE < 300) |
38 SYNCHHANDLE id; | 38 SYNCHHANDLE id; |
39 #else | 39 #else |
40 HANDLE id; | 40 HANDLE id; |
41 #endif | 41 #endif |
42 LONG volatile count; | 42 LONG count; |
43 }; | 43 }; |
44 | 44 |
45 | 45 |
46 /* Create a semaphore */ | 46 /* Create a semaphore */ |
47 SDL_sem * | 47 SDL_sem * |