Staging
v0.5.1
https://github.com/python/cpython
Revision c3c805e8b2aa6e728e38fbbae6cdb43ae6cbb9dd authored by Fred Drake on 30 July 2006, 05:41:28 UTC, committed by Fred Drake on 30 July 2006, 05:41:28 UTC
1 parent e0d4aec
Raw File
Tip revision: c3c805e8b2aa6e728e38fbbae6cdb43ae6cbb9dd authored by Fred Drake on 30 July 2006, 05:41:28 UTC
update information on wxPython, from Robin Dunn
Tip revision: c3c805e
intrcheck.h

#ifndef Py_INTRCHECK_H
#define Py_INTRCHECK_H
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_FUNC(int) PyOS_InterruptOccurred(void);
PyAPI_FUNC(void) PyOS_InitInterrupts(void);
PyAPI_FUNC(void) PyOS_AfterFork(void);

#ifdef __cplusplus
}
#endif
#endif /* !Py_INTRCHECK_H */
back to top