add portable python environment

This commit is contained in:
qianlifeng
2013-12-21 01:22:42 +08:00
parent 422e19724a
commit 2d339ba00a
727 changed files with 111572 additions and 0 deletions

View File

@@ -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 */