winconfig.h
上传用户:hmc_gdtv
上传日期:2013-08-04
资源大小:798k
文件大小:1k
源码类别:

Windows Mobile

开发平台:

Visual C++

  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 WINCONFIG_H
  10. #define WINCONFIG_H
  11. #define WIN32_LEAN_AND_MEAN
  12. #include <windows.h>
  13. #undef WIN32_LEAN_AND_MEAN
  14. #include <memory.h>
  15. #include <string.h>
  16. #define XML_NS 1
  17. #define XML_DTD 1
  18. #define XML_CONTEXT_BYTES 1024
  19. #define XML_UNICODE_WCHAR_T 1
  20. /* we will assume all Windows platforms are little endian */
  21. #define BYTEORDER 1234
  22. /* Windows has memmove() available. */
  23. #define HAVE_MEMMOVE
  24. #endif /* ndef WINCONFIG_H */