mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2026-07-14 02:11:12 +00:00
11 lines
230 B
C
11 lines
230 B
C
#ifndef SOCKET_WINDOWS_H
|
|
#define SOCKET_WINDOWS_H
|
|
|
|
#include <winsock2.h>
|
|
#include <ws2tcpip.h>
|
|
|
|
#define SOCKET_LAST_ERROR WSAGetLastError()
|
|
#define SOCKET_EWOULDBLOCK WSAEWOULDBLOCK
|
|
#define SOCKET_ECONNRESET WSAECONNRESET
|
|
|
|
#endif
|