pal/windows/socket_async_os.h (7 lines of code) (raw):

// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. //This file pulls in OS-specific header files to allow compilation of socket_async.c under // most OS's except for Windows. // For Windows systems #include <winsock2.h> #include <ws2tcpip.h> #include <windows.h> #include <mstcpip.h> #ifdef AF_UNIX_ON_WINDOWS #include <afunix.h> #endif