extern "C" { | |
PyAPI_FUNC(int) PyOS_InterruptOccurred(void); | |
PyAPI_FUNC(void) PyOS_BeforeFork(void); | |
PyAPI_FUNC(void) PyOS_AfterFork_Parent(void); | |
PyAPI_FUNC(void) PyOS_AfterFork_Child(void); | |
/* Deprecated, please use PyOS_AfterFork_Child() instead */ | |
Py_DEPRECATED(3.7) PyAPI_FUNC(void) PyOS_AfterFork(void); | |
PyAPI_FUNC(int) _PyOS_IsMainThread(void); | |
/* windows.h is not included by Python.h so use void* instead of HANDLE */ | |
PyAPI_FUNC(void*) _PyOS_SigintEvent(void); | |
} | |