blob: 70e3729ae98fe6151dbf9d5a2c6e9ba9cb9e7269 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Override _WIN32_WINNT
#undef _WIN32_WINNT
#define _WIN32_WINNT Py_WINVER
#define Py_NO_ENABLE_SHARED
#if !defined(NDEBUG) && !defined(Py_LIMITED_API) && !defined(DISABLE_PYDEBUG)
#define Py_DEBUG
#define GC_NDEBUG
#define ABIFLAGS "d"
#else
#define ABIFLAGS ""
#endif
#include "../PC/pyconfig.h"
|