mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-03 02:04:54 +00:00
0e707caa56
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
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 */
|