OLD | NEW |
1 #ifndef __LIBXML_WIN32_CONFIG__ | 1 #ifndef __LIBXML_WIN32_CONFIG__ |
2 #define __LIBXML_WIN32_CONFIG__ | 2 #define __LIBXML_WIN32_CONFIG__ |
3 | 3 |
4 #define HAVE_CTYPE_H | 4 #define HAVE_CTYPE_H |
5 #define HAVE_STDARG_H | 5 #define HAVE_STDARG_H |
6 #define HAVE_MALLOC_H | 6 #define HAVE_MALLOC_H |
7 #define HAVE_ERRNO_H | 7 #define HAVE_ERRNO_H |
| 8 #define SEND_ARG2_CAST |
| 9 #define GETHOSTBYNAME_ARG_CAST |
8 | 10 |
9 #if defined(_WIN32_WCE) | 11 #if defined(_WIN32_WCE) |
10 #undef HAVE_ERRNO_H | 12 #undef HAVE_ERRNO_H |
11 #include <windows.h> | 13 #include <windows.h> |
12 #include "wincecompat.h" | 14 #include "wincecompat.h" |
13 #else | 15 #else |
14 #define HAVE_SYS_STAT_H | 16 #define HAVE_SYS_STAT_H |
15 #define HAVE__STAT | 17 #define HAVE__STAT |
16 #define HAVE_STAT | 18 #define HAVE_STAT |
17 #define HAVE_STDLIB_H | 19 #define HAVE_STDLIB_H |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 is defined, which it is not if we don't include windows.h. */ | 119 is defined, which it is not if we don't include windows.h. */ |
118 #if !defined(FALSE) | 120 #if !defined(FALSE) |
119 #define FALSE 0 | 121 #define FALSE 0 |
120 #endif | 122 #endif |
121 #if !defined(TRUE) | 123 #if !defined(TRUE) |
122 #define TRUE (!(FALSE)) | 124 #define TRUE (!(FALSE)) |
123 #endif | 125 #endif |
124 | 126 |
125 #endif /* __LIBXML_WIN32_CONFIG__ */ | 127 #endif /* __LIBXML_WIN32_CONFIG__ */ |
126 | 128 |
OLD | NEW |