home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 May / PCWorld_2002-05_cd.bin / Software / TemaCD / activepython / ActivePython-2.1.1.msi / Python21_include_intrcheck.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-07-26  |  300 b   |  16 lines

  1.  
  2. #ifndef Py_INTRCHECK_H
  3. #define Py_INTRCHECK_H
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7.  
  8. extern DL_IMPORT(int) PyOS_InterruptOccurred(void);
  9. extern DL_IMPORT(void) PyOS_InitInterrupts(void);
  10. DL_IMPORT(void) PyOS_AfterFork(void);
  11.  
  12. #ifdef __cplusplus
  13. }
  14. #endif
  15. #endif /* !Py_INTRCHECK_H */
  16.