123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- #ifndef Py_METHODOBJECT_H
- #define Py_METHODOBJECT_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- PyAPI_DATA(PyTypeObject) PyCFunction_Type;
- #define PyCFunction_Check(op) (Py_TYPE(op) == &PyCFunction_Type)
- typedef PyObject *(*PyCFunction)(PyObject *, PyObject *);
- typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *,
- PyObject *);
- typedef PyObject *(*PyNoArgsFunction)(PyObject *);
- PyAPI_FUNC(PyCFunction) PyCFunction_GetFunction(PyObject *);
- PyAPI_FUNC(PyObject *) PyCFunction_GetSelf(PyObject *);
- PyAPI_FUNC(int) PyCFunction_GetFlags(PyObject *);
- #define PyCFunction_GET_FUNCTION(func) \
- (((PyCFunctionObject *)func) -> m_ml -> ml_meth)
- #define PyCFunction_GET_SELF(func) \
- (((PyCFunctionObject *)func) -> m_self)
- #define PyCFunction_GET_FLAGS(func) \
- (((PyCFunctionObject *)func) -> m_ml -> ml_flags)
- PyAPI_FUNC(PyObject *) PyCFunction_Call(PyObject *, PyObject *, PyObject *);
- struct PyMethodDef {
- const char *ml_name;
- PyCFunction ml_meth;
- int ml_flags;
- const char *ml_doc;
- };
- typedef struct PyMethodDef PyMethodDef;
- PyAPI_FUNC(PyObject *) Py_FindMethod(PyMethodDef[], PyObject *, const char *);
- #define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL)
- PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,
- PyObject *);
- #define METH_OLDARGS 0x0000
- #define METH_VARARGS 0x0001
- #define METH_KEYWORDS 0x0002
- #define METH_NOARGS 0x0004
- #define METH_O 0x0008
- #define METH_CLASS 0x0010
- #define METH_STATIC 0x0020
- #define METH_COEXIST 0x0040
- typedef struct PyMethodChain {
- PyMethodDef *methods;
- struct PyMethodChain *link;
- } PyMethodChain;
- PyAPI_FUNC(PyObject *) Py_FindMethodInChain(PyMethodChain *, PyObject *,
- const char *);
- typedef struct {
- PyObject_HEAD
- PyMethodDef *m_ml;
- PyObject *m_self;
- PyObject *m_module;
- } PyCFunctionObject;
- PyAPI_FUNC(int) PyCFunction_ClearFreeList(void);
- #ifdef __cplusplus
- }
- #endif
- #endif
|