mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-29 16:24:58 +00:00
18 lines
253 B
C
18 lines
253 B
C
#ifndef Ty_ENUMOBJECT_H
|
|
#define Ty_ENUMOBJECT_H
|
|
|
|
/* Enumerate Object */
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
PyAPI_DATA(TyTypeObject) PyEnum_Type;
|
|
PyAPI_DATA(TyTypeObject) PyReversed_Type;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* !Ty_ENUMOBJECT_H */
|