• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* expat_config.h for use with Open Watcom 1.5 and above.  */
2 
3 #ifndef WATCOMCONFIG_H
4 #define WATCOMCONFIG_H
5 
6 #ifdef __NT__
7 #define WIN32_LEAN_AND_MEAN
8 #include <windows.h>
9 #undef WIN32_LEAN_AND_MEAN
10 #endif
11 
12 /* 1234 = LIL_ENDIAN, 4321 = BIGENDIAN */
13 #define BYTEORDER 1234
14 
15 /* Define to 1 if you have the `memmove' function. */
16 #define HAVE_MEMMOVE 1
17 
18 /* Define to 1 if you have the <unistd.h> header file. */
19 #define HAVE_UNISTD_H 1
20 
21 /* Define to the address where bug reports for this package should be sent. */
22 #define PACKAGE_BUGREPORT "expat-bugs@mail.libexpat.org"
23 
24 /* Define to the full name of this package. */
25 #define PACKAGE_NAME "expat"
26 
27 /* Define to the full name and version of this package. */
28 #define PACKAGE_STRING "expat 2.0.0"
29 
30 /* Define to the one symbol short name of this package. */
31 #undef PACKAGE_TARNAME
32 
33 /* Define to the version of this package. */
34 #define PACKAGE_VERSION "2.0.0"
35 
36 /* Define to specify how much context to retain around the current parse
37    point. */
38 #define XML_CONTEXT_BYTES 1024
39 
40 /* Define to make parameter entity parsing functionality available. */
41 #define XML_DTD 1
42 
43 /* Define to make XML Namespaces functionality available. */
44 #define XML_NS 1
45 
46 #endif
47 
48