expat_config.h 746 B

123456789101112131415161718192021222324252627282930313233
  1. /*================================================================
  2. ** Copyright 2000, Clark Cooper
  3. ** All rights reserved.
  4. **
  5. ** This is free software. You are permitted to copy, distribute, or modify
  6. ** it under the terms of the MIT/X license (contained in the COPYING file
  7. ** with this distribution.)
  8. */
  9. #ifndef EXPATCONFIG_H
  10. #define EXPATCONFIG_H
  11. #include <memory.h>
  12. #include <string.h>
  13. #define XML_NS 1
  14. #define XML_DTD 1
  15. #define XML_CONTEXT_BYTES 1024
  16. /* we will assume all Windows platforms are little endian */
  17. #define BYTEORDER 1234
  18. /* Windows has memmove() available. */
  19. #define HAVE_MEMMOVE
  20. #ifdef WIN32
  21. #define WIN32_LEAN_AND_MEAN
  22. #include <windows.h>
  23. #undef WIN32_LEAN_AND_MEAN
  24. #else
  25. #endif
  26. #endif /* ifndef EXPATCONFIG_H */