/
githubmirror
/
c-ares
Обзор
Документация
Войти
/
githubmirror
/
c-ares
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/lib/windows_port.c
29 строк
595 B
Brad House
Clean up header inclusion, simplification (#797)
24 июн 2024, 02:34
Не верифицирован
24 июн 2024, 02:34
51ca744
Код
Авторство
О чём код?
/********************************************************************** * * Copyright (c) 1998 Massachusetts Institute of Technology * Copyright (C) Daniel Stenberg * * SPDX-License-Identifier: MIT * */ #include "ares_private.h" /* only do the following on windows */ #if defined(_WIN32) && !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 */