summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '3rdParty/CAres/src/windows_port.c')
m---------3rdParty/CAres0
-rw-r--r--3rdParty/CAres/src/windows_port.c23
2 files changed, 0 insertions, 23 deletions
diff --git a/3rdParty/CAres b/3rdParty/CAres
new file mode 160000
+Subproject b4ee3a88b3d7de7a1c39d343fb354da811dba40
diff --git a/3rdParty/CAres/src/windows_port.c b/3rdParty/CAres/src/windows_port.c
deleted file mode 100644
index ce129ae..0000000
--- a/3rdParty/CAres/src/windows_port.c
+++ /dev/null
@@ -1,23 +0,0 @@
-#include "ares_setup.h"
-
-/* $Id: windows_port.c,v 1.22 2009-11-02 11:55:54 yangtse Exp $ */
-
-/* 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 */