enumobject.h 253 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
#ifndef Py_ENUMOBJECT_H
#define Py_ENUMOBJECT_H

/* Enumerate Object */

#ifdef __cplusplus
extern "C" {
#endif

10
PyAPI_DATA(PyTypeObject) PyEnum_Type;
11
PyAPI_DATA(PyTypeObject) PyReversed_Type;
12 13 14 15 16 17

#ifdef __cplusplus
}
#endif

#endif /* !Py_ENUMOBJECT_H */