2004-07-23 06:18:45 +08:00
|
|
|
#include "setup.h"
|
|
|
|
|
2006-07-22 23:37:10 +08:00
|
|
|
/* $Id$ */
|
2006-07-22 23:21:13 +08:00
|
|
|
|
2004-08-20 21:45:26 +08:00
|
|
|
/* only do the following on windows
|
|
|
|
*/
|
|
|
|
#if (defined(WIN32) || defined(WATT32)) && !defined(MSDOS)
|
2003-10-08 05:54:04 +08:00
|
|
|
|
2007-02-04 20:50:53 +08:00
|
|
|
#ifdef __WATCOMC__
|
2007-02-04 21:02:31 +08:00
|
|
|
/*
|
2007-02-20 01:40:36 +08:00
|
|
|
* Watcom needs a DllMain() in order to initialise the clib startup code.
|
2007-02-04 20:50:53 +08:00
|
|
|
*/
|
|
|
|
BOOL
|
2007-02-04 21:02:31 +08:00
|
|
|
WINAPI DllMain (HINSTANCE hnd, DWORD reason, LPVOID reserved)
|
2007-02-04 20:50:53 +08:00
|
|
|
{
|
|
|
|
(void) hnd;
|
|
|
|
(void) reason;
|
|
|
|
(void) reserved;
|
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-07-23 06:18:45 +08:00
|
|
|
#endif /* WIN32 builds only */
|