pair.h 200 B

123456789
  1. #pragma once
  2. #include "init.h"
  3. int SocketPair(SOCKET socks[2], bool overlapped, bool cloexec = false);
  4. static inline int SocketPair(SOCKET socks[2]) {
  5. return SocketPair(socks, false, false);
  6. }