From c571e218c76a225643f67562cedfe45cdd087917 Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Thu, 12 Aug 2021 11:51:08 +0200 Subject: [PATCH] Compat: add back types --- include/Compat.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/Compat.h b/include/Compat.h index 268ea77..89d625c 100644 --- a/include/Compat.h +++ b/include/Compat.h @@ -7,6 +7,10 @@ #include #include #include +using SOCKET = int; +using DWORD = unsigned long; +using PDWORD = unsigned long*; +using LPDWORD = unsigned long*; char _getch(); inline void CloseSocketProper(int TheSocket) { shutdown(TheSocket, SHUT_RDWR);