Staging
v0.5.1
Revision a9d7e552c72b6e9515e76a1dd4b247da86da23de authored by Yury Selivanov on 19 December 2017, 12:18:45 UTC, committed by GitHub on 19 December 2017, 12:18:45 UTC
1 parent a7bd64c
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