1 #ifndef __LIBXML_WIN32_CONFIG__
2 #define __LIBXML_WIN32_CONFIG__
10 #if defined(_WIN32_WCE)
13 #include "wincecompat.h"
15 #define HAVE_SYS_STAT_H
25 #include <libxml/xmlversion.h>
28 #define ICONV_CONST const
32 #include <wsockcompat.h>
36 * Windows platforms may define except
43 #if defined(_MSC_VER) || defined(__BORLANDC__)
44 /* MS C-runtime has functions which can be used in order to determine if
45 a given floating-point variable contains NaN, (+-)INF. These are
46 preferred, because floating-point technology is considered propriatary
47 by MS and we can assume that their functions know more about their
48 oddities than we do. */
50 /* Bjorn Reese figured a quite nice construct for isinf() using the _fpclass
53 #define isinf(d) ((_fpclass(d) == _FPCLASS_PINF) ? 1 \
54 : ((_fpclass(d) == _FPCLASS_NINF) ? -1 : 0))
56 /* _isnan(x) returns nonzero if (x == NaN) and zero otherwise. */
58 #define isnan(d) (_isnan(d))
62 static int isinf (double d
) {
64 double val
= frexp (d
, &expon
);
68 } else if (val
== -0.5) {
79 static int isnan (double d
) {
81 double val
= frexp (d
, &expon
);
85 } else if (val
== -0.5) {
98 #define mkdir(p,m) _mkdir(p)
99 #define snprintf _snprintf
101 #define vsnprintf(b,c,f,a) _vsnprintf(b,c,f,a)
103 #elif defined(__MINGW32__)
104 #define mkdir(p,m) _mkdir(p)
107 /* Threading API to use should be specified here for compatibility reasons.
108 This is however best specified on the compiler's command-line. */
109 #if defined(LIBXML_THREAD_ENABLED)
110 #if !defined(HAVE_PTHREAD_H) && !defined(HAVE_WIN32_THREADS) && !defined(_WIN32_WCE)
111 #define HAVE_WIN32_THREADS
115 /* Some third-party libraries far from our control assume the following
116 is defined, which it is not if we don't include windows.h. */
121 #define TRUE (!(FALSE))
124 #endif /* __LIBXML_WIN32_CONFIG__ */