*** empty log message ***

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40544
This commit is contained in:
Sam Lantinga 2002-11-17 18:59:10 +00:00
parent 87040b3a85
commit 5c63a69080
4 changed files with 6 additions and 6 deletions

View file

@ -241,8 +241,8 @@ const SDL_version * SDL_Linked_Version(void)
return(&version);
}
#if defined(_WIN32_WCE)
/* Need to include DllMain() on Windows CE for some reason.. */
#if defined(_WIN32_WCE) || (defined(__WATCOMC__) && defined(BUILD_DLL))
/* Need to include DllMain() on Windows CE and Watcom C for some reason.. */
#include <windows.h>
BOOL APIENTRY DllMain( HANDLE hModule,
@ -258,4 +258,4 @@ BOOL APIENTRY DllMain( HANDLE hModule,
}
return TRUE;
}
#endif /* _WIN32_WCE */
#endif /* _WIN32_WCE and building DLL with Watcom C */