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