Guido van Rossum | 7dab242 | 2002-04-26 19:40:56 +0000 | [diff] [blame] | 1 | #ifndef Py_ENUMOBJECT_H |
2 | #define Py_ENUMOBJECT_H | ||||
3 | |||||
4 | /* Enumerate Object */ | ||||
5 | |||||
6 | #ifdef __cplusplus | ||||
7 | extern "C" { | ||||
8 | #endif | ||||
9 | |||||
10 | extern DL_IMPORT(PyTypeObject) PyEnum_Type; | ||||
11 | |||||
12 | #ifdef __cplusplus | ||||
13 | } | ||||
14 | #endif | ||||
15 | |||||
16 | #endif /* !Py_ENUMOBJECT_H */ |