mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
414 B
23 lines
414 B
#include "ares_setup.h"
|
|
|
|
/* $Id$ */
|
|
|
|
/* only do the following on windows
|
|
*/
|
|
#if (defined(WIN32) || defined(WATT32)) && !defined(MSDOS)
|
|
|
|
#ifdef __WATCOMC__
|
|
/*
|
|
* Watcom needs a DllMain() in order to initialise the clib startup code.
|
|
*/
|
|
BOOL
|
|
WINAPI DllMain (HINSTANCE hnd, DWORD reason, LPVOID reserved)
|
|
{
|
|
(void) hnd;
|
|
(void) reason;
|
|
(void) reserved;
|
|
return (TRUE);
|
|
}
|
|
#endif
|
|
|
|
#endif /* WIN32 builds only */
|
|
|