mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2026-07-13 18:01:13 +00:00
18 lines
301 B
C
18 lines
301 B
C
#ifndef SOCKET_H
|
|
#define SOCKET_H
|
|
|
|
#ifdef WINSOCK
|
|
#include "socket_windows.h"
|
|
#else
|
|
#include "socket_linux.h"
|
|
#endif
|
|
|
|
#include "../network.h"
|
|
|
|
extern struct NetworkSystem gNetworkSystemSocket;
|
|
|
|
SOCKET socket_initialize(void);
|
|
void socket_shutdown(SOCKET socket);
|
|
void domain_resolution(void);
|
|
|
|
#endif
|