Compat: add back types

This commit is contained in:
Lion Kortlepel 2021-08-12 11:51:08 +02:00 committed by Lion
parent 5725717e29
commit c571e218c7

View File

@ -7,6 +7,10 @@
#include <sys/socket.h>
#include <termios.h>
#include <unistd.h>
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);