2001-09-20 18:45:26 -03:00
|
|
|
/* Descriptors */
|
2002-03-30 04:57:12 -04:00
|
|
|
#ifndef Py_DESCROBJECT_H
|
|
|
|
#define Py_DESCROBJECT_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2001-08-02 01:15:00 -03:00
|
|
|
|
|
|
|
typedef PyObject *(*getter)(PyObject *, void *);
|
|
|
|
typedef int (*setter)(PyObject *, PyObject *, void *);
|
|
|
|
|
2001-09-20 18:45:26 -03:00
|
|
|
typedef struct PyGetSetDef {
|
2016-11-22 01:58:08 -04:00
|
|
|
const char *name;
|
2010-05-09 12:52:27 -03:00
|
|
|
getter get;
|
|
|
|
setter set;
|
2016-11-22 01:58:08 -04:00
|
|
|
const char *doc;
|
2010-05-09 12:52:27 -03:00
|
|
|
void *closure;
|
2001-09-20 18:45:26 -03:00
|
|
|
} PyGetSetDef;
|
2001-08-02 01:15:00 -03:00
|
|
|
|
2007-11-29 18:35:39 -04:00
|
|
|
PyAPI_DATA(PyTypeObject) PyClassMethodDescr_Type;
|
|
|
|
PyAPI_DATA(PyTypeObject) PyGetSetDescr_Type;
|
|
|
|
PyAPI_DATA(PyTypeObject) PyMemberDescr_Type;
|
|
|
|
PyAPI_DATA(PyTypeObject) PyMethodDescr_Type;
|
2002-08-12 04:21:58 -03:00
|
|
|
PyAPI_DATA(PyTypeObject) PyWrapperDescr_Type;
|
2007-11-29 18:35:39 -04:00
|
|
|
PyAPI_DATA(PyTypeObject) PyDictProxy_Type;
|
2022-01-26 12:32:47 -04:00
|
|
|
PyAPI_DATA(PyTypeObject) PyProperty_Type;
|
|
|
|
// Forward declaration for following prototype
|
|
|
|
struct PyMemberDef;
|
2001-10-03 09:09:30 -03:00
|
|
|
|
2002-08-12 04:21:58 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyDescr_NewMethod(PyTypeObject *, PyMethodDef *);
|
2002-12-09 18:56:13 -04:00
|
|
|
PyAPI_FUNC(PyObject *) PyDescr_NewClassMethod(PyTypeObject *, PyMethodDef *);
|
2002-08-12 04:21:58 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyDescr_NewMember(PyTypeObject *,
|
2010-05-09 12:52:27 -03:00
|
|
|
struct PyMemberDef *);
|
2002-08-12 04:21:58 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyDescr_NewGetSet(PyTypeObject *,
|
2010-05-09 12:52:27 -03:00
|
|
|
struct PyGetSetDef *);
|
2001-08-02 01:15:00 -03:00
|
|
|
|
2002-08-12 04:21:58 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyDictProxy_New(PyObject *);
|
|
|
|
PyAPI_FUNC(PyObject *) PyWrapper_New(PyObject *, PyObject *);
|
2001-08-23 18:40:38 -03:00
|
|
|
|
2022-01-26 12:32:47 -04:00
|
|
|
#ifndef Py_LIMITED_API
|
|
|
|
# define Py_CPYTHON_DESCROBJECT_H
|
|
|
|
# include "cpython/descrobject.h"
|
|
|
|
# undef Py_CPYTHON_DESCROBJECT_H
|
|
|
|
#endif
|
2001-08-23 18:40:38 -03:00
|
|
|
|
2002-03-30 04:57:12 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_DESCROBJECT_H */
|