- Notifications
You must be signed in to change notification settings - Fork 31.7k
/
Copy pathstructmember.h
56 lines (49 loc) · 1.61 KB
/
structmember.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#ifndefPy_STRUCTMEMBER_H
#definePy_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 */
#defineT_SHORT Py_T_SHORT
#defineT_INT Py_T_INT
#defineT_LONG Py_T_LONG
#defineT_FLOAT Py_T_FLOAT
#defineT_DOUBLE Py_T_DOUBLE
#defineT_STRING Py_T_STRING
#defineT_OBJECT _Py_T_OBJECT
#defineT_CHAR Py_T_CHAR
#defineT_BYTE Py_T_BYTE
#defineT_UBYTE Py_T_UBYTE
#defineT_USHORT Py_T_USHORT
#defineT_UINT Py_T_UINT
#defineT_ULONG Py_T_ULONG
#defineT_STRING_INPLACE Py_T_STRING_INPLACE
#defineT_BOOL Py_T_BOOL
#defineT_OBJECT_EX Py_T_OBJECT_EX
#defineT_LONGLONG Py_T_LONGLONG
#defineT_ULONGLONG Py_T_ULONGLONG
#defineT_PYSSIZET Py_T_PYSSIZET
#defineT_NONE _Py_T_NONE
/* Flags */
#defineREADONLY Py_READONLY
#definePY_AUDIT_READ Py_AUDIT_READ
#defineREAD_RESTRICTED Py_AUDIT_READ
#definePY_WRITE_RESTRICTED _Py_WRITE_RESTRICTED
#defineRESTRICTED (READ_RESTRICTED | PY_WRITE_RESTRICTED)
#ifdef__cplusplus
}
#endif
#endif/* !Py_STRUCTMEMBER_H */