%PDF- %PDF-
| Direktori : /home/vacivi36/vittasync.vacivitta.com.br/vittasync/node/deps/cares/src/lib/ |
| Current File : /home/vacivi36/vittasync.vacivitta.com.br/vittasync/node/deps/cares/src/lib/windows_port.c |
/**********************************************************************
*
* Copyright (c) 1998 Massachusetts Institute of Technology
* Copyright (C) Daniel Stenberg
*
* SPDX-License-Identifier: MIT
*
*/
#include "ares_setup.h"
/* 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 */