From ed3d0834e6e96af782e0d3e5611ae964f5147ce1 Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Thu, 29 Jul 2021 12:02:49 +0200 Subject: [PATCH] add ws2tcpip.h --- include/Compat.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/Compat.h b/include/Compat.h index 18d2b90..60ff13a 100644 --- a/include/Compat.h +++ b/include/Compat.h @@ -23,6 +23,7 @@ inline void CloseSocketProper(int socket) { #ifdef WIN32 #include #include +#include inline void CloseSocketProper(SOCKET socket) { shutdown(socket, SD_BOTH); closesocket(socket);