summaryrefslogtreecommitdiff
path: root/AppPkg/Applications/Python/Python-2.7.10/Include/intrcheck.h
diff options
context:
space:
mode:
Diffstat (limited to 'AppPkg/Applications/Python/Python-2.7.10/Include/intrcheck.h')
-rw-r--r--AppPkg/Applications/Python/Python-2.7.10/Include/intrcheck.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/AppPkg/Applications/Python/Python-2.7.10/Include/intrcheck.h b/AppPkg/Applications/Python/Python-2.7.10/Include/intrcheck.h
new file mode 100644
index 0000000000..11d759e42a
--- /dev/null
+++ b/AppPkg/Applications/Python/Python-2.7.10/Include/intrcheck.h
@@ -0,0 +1,15 @@
+
+#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 */