diff options
Diffstat (limited to 'AppPkg/Applications/Python/Python-2.7.2/Include/enumobject.h')
-rw-r--r-- | AppPkg/Applications/Python/Python-2.7.2/Include/enumobject.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Include/enumobject.h b/AppPkg/Applications/Python/Python-2.7.2/Include/enumobject.h new file mode 100644 index 0000000000..42dc2d27de --- /dev/null +++ b/AppPkg/Applications/Python/Python-2.7.2/Include/enumobject.h @@ -0,0 +1,17 @@ +#ifndef Py_ENUMOBJECT_H
+#define Py_ENUMOBJECT_H
+
+/* Enumerate Object */
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+PyAPI_DATA(PyTypeObject) PyEnum_Type;
+PyAPI_DATA(PyTypeObject) PyReversed_Type;
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* !Py_ENUMOBJECT_H */
|