mirror of
https://github.com/cemu-project/Cemu.git
synced 2026-03-25 19:49:25 -06:00
17 lines
216 B
C
17 lines
216 B
C
#pragma once
|
|
|
|
#if BOOST_OS_WINDOWS
|
|
|
|
#include <WinSock2.h>
|
|
typedef int socklen_t;
|
|
|
|
#else
|
|
|
|
#include <sys/socket.h>
|
|
#define SOCKET int
|
|
#define closesocket close
|
|
#define SOCKET_ERROR -1
|
|
#define INVALID_SOCKET -1
|
|
|
|
#endif
|