summaryrefslogtreecommitdiffstats
path: root/Include/enumobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'Include/enumobject.h')
-rw-r--r--Include/enumobject.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/Include/enumobject.h b/Include/enumobject.h
new file mode 100644
index 0000000..df20fb0
--- /dev/null
+++ b/Include/enumobject.h
@@ -0,0 +1,16 @@
+#ifndef Py_ENUMOBJECT_H
+#define Py_ENUMOBJECT_H
+
+/* Enumerate Object */
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+extern DL_IMPORT(PyTypeObject) PyEnum_Type;
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* !Py_ENUMOBJECT_H */