mirror of
https://github.com/moparisthebest/curl
synced 2024-10-31 23:55:01 -04:00
24 lines
414 B
C
24 lines
414 B
C
#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 */
|