websockify/other/win32/osisock.h

17 lines
223 B
C

#ifndef __OSISOCK_H
#define __OSISOCK_H
#ifndef SHUT_RD
# define SHUT_RD SD_RECEIVE
#endif
#ifndef SHUT_WR
# define SHUT_WR SD_SEND
#endif
#ifndef SHUT_RDWR
# define SHUT_RDWR SD_BOTH
#endif
#endif // __OSISOCK_H