intrcheck.h 460 B

123456789101112131415161718192021
  1. #ifndef Py_INTRCHECK_H
  2. #define Py_INTRCHECK_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. PyAPI_FUNC(int) PyOS_InterruptOccurred(void);
  7. PyAPI_FUNC(void) PyOS_InitInterrupts(void);
  8. PyAPI_FUNC(void) PyOS_AfterFork(void);
  9. PyAPI_FUNC(int) _PyOS_IsMainThread(void);
  10. #ifdef MS_WINDOWS
  11. /* windows.h is not included by Python.h so use void* instead of HANDLE */
  12. PyAPI_FUNC(void*) _PyOS_SigintEvent(void);
  13. #endif
  14. #ifdef __cplusplus
  15. }
  16. #endif
  17. #endif /* !Py_INTRCHECK_H */