1 #ifndef Py_STRUCTMEMBER_H
2 #define Py_STRUCTMEMBER_H
8 /* Interface to map C struct members to Python object attributes */
11 #include <stddef.h> /* For offsetof */
14 /* The offsetof() macro calculates the offset of a structure member
15 in its structure. Unfortunately this cannot be written down
16 portably, hence it is provided by a Standard C header file.
17 For pre-Standard C compilers, here is a version that usually works
21 #define offsetof(type, member) ( (int) & ((type*)0) -> member )
24 /* An array of memberlist structures defines the name, type and offset
25 of selected members of a C structure. These can be read by
26 PyMember_Get() and set by PyMember_Set() (except if their READONLY flag
27 is set). The array must be terminated with an entry whose name
45 /* XXX the ordering here is weird for binary compatibility */
46 #define T_CHAR 7 /* 1-character string */
47 #define T_BYTE 8 /* 8-bit signed int */
48 /* unsigned variants: */
54 /* Added by Jack: strings contained in the structure */
55 #define T_STRING_INPLACE 13
57 #define T_PSTRING 14 /* macintosh pascal-style counted string */
58 #define T_PSTRING_INPLACE 15
59 #endif /* macintosh */
63 #define RO READONLY /* Shorthand */
65 DL_IMPORT(PyObject
*) PyMember_Get(char *, struct memberlist
*, char *);
66 DL_IMPORT(int) PyMember_Set(char *, struct memberlist
*, char *, PyObject
*);
71 #endif /* !Py_STRUCTMEMBER_H */