blob: 64d81bcc7da70975afa1a9bc3b5be7754b3087ea (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#pragma once
#include "init.h"
int SocketPair(SOCKET socks[2], bool overlapped, bool cloexec = false);
static inline int SocketPair(SOCKET socks[2]) {
return SocketPair(socks, false, false);
}
|