winconfig.h 636 B

123456789101112131415161718192021222324252627
  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. #include "expat_config.h"
  17. #if defined(_MSC_VER)
  18. # pragma warning(push,1)
  19. # pragma warning(disable:4311) /* pointer truncation */
  20. #endif
  21. #endif /* ndef WINCONFIG_H */