Staging
v0.5.1
Revision 32ffd3dcd7d668048c10bb80f9d749120248468a authored by Anthony Baxter on 10 March 2005, 04:51:47 UTC, committed by Anthony Baxter on 10 March 2005, 04:51:47 UTC
1 parent 9e9d858
Raw File
enumobject.h
#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 */
back to top