pyconfig-win.h 255 B

123456789101112
  1. // Override _WIN32_WINNT
  2. #undef _WIN32_WINNT
  3. #define _WIN32_WINNT Py_WINVER
  4. #define Py_NO_ENABLE_SHARED
  5. #if !defined(NDEBUG) && !defined(Py_LIMITED_API) && !defined(DISABLE_PYDEBUG)
  6. #define Py_DEBUG
  7. #define GC_NDEBUG
  8. #endif
  9. #include "../PC/pyconfig.h"