1993-07-28 06:05:47 -03:00
|
|
|
#ifndef Py_METHODOBJECT_H
|
|
|
|
#define Py_METHODOBJECT_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
1991-02-19 08:39:46 -04:00
|
|
|
/***********************************************************
|
2000-06-30 20:50:40 -03:00
|
|
|
Copyright (c) 2000, BeOpen.com.
|
|
|
|
Copyright (c) 1995-2000, Corporation for National Research Initiatives.
|
|
|
|
Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
See the file "Misc/COPYRIGHT" for information on usage and
|
|
|
|
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
1991-02-19 08:39:46 -04:00
|
|
|
******************************************************************/
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
/* Method object interface */
|
|
|
|
|
1995-02-27 06:17:52 -04:00
|
|
|
extern DL_IMPORT(PyTypeObject) PyCFunction_Type;
|
1990-10-14 09:07:46 -03:00
|
|
|
|
1995-01-12 07:45:45 -04:00
|
|
|
#define PyCFunction_Check(op) ((op)->ob_type == &PyCFunction_Type)
|
1990-10-14 09:07:46 -03:00
|
|
|
|
1995-01-12 07:45:45 -04:00
|
|
|
typedef PyObject *(*PyCFunction) Py_FPROTO((PyObject *, PyObject *));
|
1995-07-26 14:58:29 -03:00
|
|
|
typedef PyObject *(*PyCFunctionWithKeywords)
|
|
|
|
Py_FPROTO((PyObject *, PyObject *, PyObject *));
|
1990-10-14 09:07:46 -03:00
|
|
|
|
1998-12-04 14:48:25 -04:00
|
|
|
extern DL_IMPORT(PyCFunction) PyCFunction_GetFunction Py_PROTO((PyObject *));
|
|
|
|
extern DL_IMPORT(PyObject *) PyCFunction_GetSelf Py_PROTO((PyObject *));
|
|
|
|
extern DL_IMPORT(int) PyCFunction_GetFlags Py_PROTO((PyObject *));
|
1990-12-20 11:06:42 -04:00
|
|
|
|
1998-07-10 12:21:55 -03:00
|
|
|
/* Macros for direct access to these values. Type checks are *not*
|
|
|
|
done, so use with care. */
|
|
|
|
#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)
|
|
|
|
|
1995-01-12 07:45:45 -04:00
|
|
|
struct PyMethodDef {
|
|
|
|
char *ml_name;
|
|
|
|
PyCFunction ml_meth;
|
|
|
|
int ml_flags;
|
|
|
|
char *ml_doc;
|
1990-12-20 11:06:42 -04:00
|
|
|
};
|
1995-01-12 07:45:45 -04:00
|
|
|
typedef struct PyMethodDef PyMethodDef;
|
1990-12-20 11:06:42 -04:00
|
|
|
|
1998-12-04 14:48:25 -04:00
|
|
|
extern DL_IMPORT(PyObject *) Py_FindMethod
|
1995-01-12 07:45:45 -04:00
|
|
|
Py_PROTO((PyMethodDef[], PyObject *, char *));
|
1995-01-07 06:32:29 -04:00
|
|
|
|
1998-12-04 14:48:25 -04:00
|
|
|
extern DL_IMPORT(PyObject *) PyCFunction_New
|
1995-01-12 07:45:45 -04:00
|
|
|
Py_PROTO((PyMethodDef *, PyObject *));
|
1993-07-28 06:05:47 -03:00
|
|
|
|
1995-01-04 15:06:22 -04:00
|
|
|
/* Flag passed to newmethodobject */
|
|
|
|
#define METH_VARARGS 0x0001
|
1995-07-26 14:58:29 -03:00
|
|
|
#define METH_KEYWORDS 0x0002
|
1995-01-04 15:06:22 -04:00
|
|
|
|
1995-01-26 18:58:48 -04:00
|
|
|
typedef struct PyMethodChain {
|
|
|
|
PyMethodDef *methods; /* Methods of this type */
|
|
|
|
struct PyMethodChain *link; /* NULL or base type */
|
|
|
|
} PyMethodChain;
|
|
|
|
|
1998-12-04 14:48:25 -04:00
|
|
|
extern DL_IMPORT(PyObject *) Py_FindMethodInChain
|
1995-01-26 18:58:48 -04:00
|
|
|
Py_PROTO((PyMethodChain *, PyObject *, char *));
|
|
|
|
|
1998-07-10 12:21:55 -03:00
|
|
|
typedef struct {
|
|
|
|
PyObject_HEAD
|
|
|
|
PyMethodDef *m_ml;
|
|
|
|
PyObject *m_self;
|
|
|
|
} PyCFunctionObject;
|
|
|
|
|
1993-07-28 06:05:47 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_METHODOBJECT_H */
|