mirror of
https://github.com/wassname/ray.git
synced 2026-07-19 11:27:32 +08:00
11 lines
217 B
C
11 lines
217 B
C
#ifndef SOCKET_H
|
|
#define SOCKET_H
|
|
|
|
#include <Winsock2.h>
|
|
#include <unistd.h> // ssize_t
|
|
|
|
int dumb_socketpair(SOCKET socks[2]);
|
|
int socketpair(int domain, int type, int protocol, SOCKET sv[2]);
|
|
|
|
#endif /* SOCKET_H */
|