cpython/Include/structmember.h

#ifndef Py_STRUCTMEMBER_H
#define Py_STRUCTMEMBER_H
#ifdef __cplusplus
extern "C" {
#endif


/* Interface to map C struct members to Python object attributes
 *
 * This header is deprecated: new code should not use stuff from here.
 * New definitions are in descrobject.h.
 *
 * However, there's nothing wrong with old code continuing to use it,
 * and there's not much maintenance overhead in maintaining a few aliases.
 * So, don't be too eager to convert old code.
 *
 * It uses names not prefixed with Py_.
 * It is also *not* included from Python.h and must be included individually.
 */

#include <stddef.h> /* For offsetof (not always provided by Python.h) */

/* Types */
#define T_SHORT
#define T_INT
#define T_LONG
#define T_FLOAT
#define T_DOUBLE
#define T_STRING
#define T_OBJECT
#define T_CHAR
#define T_BYTE
#define T_UBYTE
#define T_USHORT
#define T_UINT
#define T_ULONG
#define T_STRING_INPLACE
#define T_BOOL
#define T_OBJECT_EX
#define T_LONGLONG
#define T_ULONGLONG
#define T_PYSSIZET
#define T_NONE

/* Flags */
#define READONLY
#define PY_AUDIT_READ
#define READ_RESTRICTED
#define PY_WRITE_RESTRICTED
#define RESTRICTED


#ifdef __cplusplus
}
#endif
#endif /* !Py_STRUCTMEMBER_H */