1 #ifndef EXPAT_CONFIG_H
2 #define EXPAT_CONFIG_H
3 
4 #ifdef _MSC_VER
5 #  include <cutl/details/config-vc.h>
6 #else
7 #  include <cutl/details/config.h>
8 #endif
9 
10 #define BYTEORDER LIBCUTL_BYTEORDER
11 
12 #define XML_NS 1
13 #define XML_DTD 1
14 #define XML_CONTEXT_BYTES 1024
15 
16 #define UNUSED(x) (void)x;
17 
18 #ifdef _WIN32
19 /* Windows
20  *
21  */
22 #define WIN32_LEAN_AND_MEAN
23 #include <windows.h>
24 #undef WIN32_LEAN_AND_MEAN
25 
26 #define HAVE_MEMMOVE 1
27 
28 #else
29 /* POSIX
30  *
31  */
32 #define HAVE_MEMMOVE 1
33 #endif
34 
35 #endif /* EXPAT_CONFIG_H */
36