intrcheck.h 289 B

123456789101112131415
  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. #ifdef __cplusplus
  10. }
  11. #endif
  12. #endif /* !Py_INTRCHECK_H */