c-ares/windows_port.c

23 lines
403 B
C
Raw Normal View History

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