Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
274 B

  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 */