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