diff options
Diffstat (limited to 'PC')
-rw-r--r-- | PC/winsound.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/PC/winsound.c b/PC/winsound.c index 7e4ebd9..a6b2dac 100644 --- a/PC/winsound.c +++ b/PC/winsound.c @@ -35,11 +35,10 @@ winsound.PlaySound(None, 0) */ +// Need limited C API version 3.12 for Py_MOD_PER_INTERPRETER_GIL_SUPPORTED #include "pyconfig.h" // Py_GIL_DISABLED - #ifndef Py_GIL_DISABLED -// Need limited C API version 3.12 for Py_MOD_PER_INTERPRETER_GIL_SUPPORTED -#define Py_LIMITED_API 0x030c0000 +# define Py_LIMITED_API 0x030c0000 #endif #include <Python.h> |