added some include for the apps

This commit is contained in:
Gerhard Stein
2016-12-27 21:53:55 +01:00
parent 73d920684c
commit 82b7b33327
99 changed files with 16709 additions and 1 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 */