Mercurial > sdl-ios-xcode
diff src/SDL.c @ 1465:8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Converted the disk audio driver to SDL_RWops for portability
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sat, 04 Mar 2006 08:24:35 +0000 |
parents | bb6839704ed6 |
children | dc6b59e925a2 |
line wrap: on
line diff
--- a/src/SDL.c Sat Mar 04 05:13:03 2006 +0000 +++ b/src/SDL.c Sat Mar 04 08:24:35 2006 +0000 @@ -325,8 +325,8 @@ #elif defined(__WIN32__) -#if !defined(HAVE_LIBC) || defined(_WIN32_WCE) || (defined(__WATCOMC__) && defined(BUILD_DLL)) -/* Need to include DllMain() on Windows CE and Watcom C for some reason.. */ +#if !defined(HAVE_LIBC) || (defined(__WATCOMC__) && defined(BUILD_DLL)) +/* Need to include DllMain() on Watcom C for some reason.. */ #define WIN32_LEAN_AND_MEAN #include <windows.h> @@ -343,6 +343,6 @@ } return TRUE; } -#endif /* _WIN32_WCE and building DLL with Watcom C */ +#endif /* building DLL with Watcom C */ #endif /* OS/2 elif __WIN32__ */