2 * Copyright (C) 2010 Brian Aker, Trond Norbye
5 * Use and distribution licensed under the BSD license. See
6 * the COPYING file in the parent directory for full text.
8 * Summary: "Implementation" of the function we don't have on windows
9 * to avoid a bunch of ifdefs in the rest of the code
12 #ifndef WIN32_WRAPPERS_H
13 #define WIN32_WRAPPERS_H 1
18 * One of the Windows headers define interface as a macro, but that
19 * is causing problems with the member named "interface" in some of the
29 * WinSock use a separate range for error codes. Let's just map to the
33 # define EADDRINUSE WSAEADDRINUSE
37 # define EWOULDBLOCK WSAEWOULDBLOCK
41 # define EINPROGRESS WSAEINPROGRESS
45 # define EALREADY WSAEALREADY
49 # define EISCONN WSAEISCONN
53 # define ENOTCONN WSAENOTCONN
57 # define ENOBUFS WSAENOBUFS
61 # define SHUT_RDWR SD_BOTH
64 /* EAI_SYSTEM isn't defined anywhere... just set it to... 11? */
66 # define EAI_SYSTEM 11
69 /* Best effort mapping of functions to alternative functions */
70 #define index(a,b) strchr(a,b)
71 #define rindex(a,b) strrchr(a,b)
72 #define random() rand()
73 #define srandom(a) while (false) {}
74 #define kill(a, b) while (false) {}
76 #define waitpid(a,b,c) (-1)
77 #define fnmatch(a,b,c) (-1)
78 #define sleep(a) Sleep(a*1000)
80 #endif /* WIN32_WRAPPERS_H */