80b44651c4b29aa8162f8d48a3f982a442077c41
[m6w6/libmemcached] / win32 / wrappers.h
1 /* LibMemcached
2 * Copyright (C) 2010 Brian Aker, Trond Norbye
3 * All rights reserved.
4 *
5 * Use and distribution licensed under the BSD license. See
6 * the COPYING file in the parent directory for full text.
7 *
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
10 *
11 */
12 #ifndef WIN32_WRAPPERS_H
13 #define WIN32_WRAPPERS_H 1
14
15 #include <inttypes.h>
16
17 /*
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
20 * structs.
21 */
22 #undef interface
23
24 #undef malloc
25 #undef realloc
26
27
28 /*
29 * WinSock use a separate range for error codes. Let's just map to the
30 * WinSock ones.
31 */
32 #define EADDRINUSE WSAEADDRINUSE
33 #define EWOULDBLOCK WSAEWOULDBLOCK
34 #define EINPROGRESS WSAEINPROGRESS
35 #define EALREADY WSAEALREADY
36 #define EISCONN WSAEISCONN
37 #define ENOTCONN WSAENOTCONN
38 #define ENOBUFS WSAENOBUFS
39 #define SHUT_RDWR SD_BOTH
40
41 /* EAI_SYSTEM isn't defined anywhere... just set it to... 11? */
42 #define EAI_SYSTEM 11
43
44 /* Best effort mapping of functions to alternative functions */
45 #define index(a,b) strchr(a,b)
46 #define rindex(a,b) strrchr(a,b)
47 #define random() rand()
48 #define srandom(a) while (false) {}
49 #define kill(a, b) while (false) {}
50 #define fork() (-1)
51 #define waitpid(a,b,c) (-1)
52 #define fnmatch(a,b,c) (-1)
53 #define sleep(a) Sleep(a*1000)
54
55 #endif /* WIN32_WRAPPERS_H */