libowfat/windoze.h
leitner 4f1e1d300c make headers work in C++
add two more variable length integer encoding functions
2012-02-07 17:02:40 +00:00

21 lines
258 B
C

#ifdef __MINGW32__
#ifdef __cplusplus
extern "C" {
#endif
/* set errno to WSAGetLastError() */
int winsock2errno(long l);
void __winsock_init(void);
#else
#define winsock2errno(fnord) (fnord)
#define __winsock_init()
#ifdef __cplusplus
}
#endif
#endif