| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | /* Method object interface */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-09 00:20:36 +00:00
										 |  |  | #ifndef Py_METHODOBJECT_H
 | 
					
						
							|  |  |  | #define Py_METHODOBJECT_H
 | 
					
						
							|  |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | extern "C" { | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-02-27 10:17:52 +00:00
										 |  |  | extern DL_IMPORT(PyTypeObject) PyCFunction_Type; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-12 11:45:45 +00:00
										 |  |  | #define PyCFunction_Check(op) ((op)->ob_type == &PyCFunction_Type)
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-09 03:09:57 +00:00
										 |  |  | typedef PyObject *(*PyCFunction)(PyObject *, PyObject *); | 
					
						
							|  |  |  | typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *, | 
					
						
							|  |  |  | 					     PyObject *); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-09 00:20:36 +00:00
										 |  |  | extern DL_IMPORT(PyCFunction) PyCFunction_GetFunction(PyObject *); | 
					
						
							|  |  |  | extern DL_IMPORT(PyObject *) PyCFunction_GetSelf(PyObject *); | 
					
						
							|  |  |  | extern DL_IMPORT(int) PyCFunction_GetFlags(PyObject *); | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-07-10 15:21:55 +00: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 11:45:45 +00:00
										 |  |  | struct PyMethodDef { | 
					
						
							| 
									
										
										
										
											2000-07-09 00:20:36 +00:00
										 |  |  |     char	*ml_name; | 
					
						
							|  |  |  |     PyCFunction  ml_meth; | 
					
						
							|  |  |  |     int		 ml_flags; | 
					
						
							|  |  |  |     char	*ml_doc; | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											1995-01-12 11:45:45 +00:00
										 |  |  | typedef struct PyMethodDef PyMethodDef; | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-09 00:20:36 +00:00
										 |  |  | extern DL_IMPORT(PyObject *) Py_FindMethod(PyMethodDef[], PyObject *, char *); | 
					
						
							| 
									
										
										
										
											1995-01-07 10:32:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-09 00:20:36 +00:00
										 |  |  | extern DL_IMPORT(PyObject *) PyCFunction_New(PyMethodDef *, PyObject *); | 
					
						
							| 
									
										
										
										
											1993-07-28 09:05:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-04 19:06:22 +00:00
										 |  |  | /* Flag passed to newmethodobject */ | 
					
						
							| 
									
										
										
										
											2000-08-03 02:28:54 +00:00
										 |  |  | #define METH_OLDARGS  0x0000
 | 
					
						
							| 
									
										
										
										
											1995-01-04 19:06:22 +00:00
										 |  |  | #define METH_VARARGS  0x0001
 | 
					
						
							| 
									
										
										
										
											1995-07-26 17:58:29 +00:00
										 |  |  | #define METH_KEYWORDS 0x0002
 | 
					
						
							| 
									
										
										
										
											1995-01-04 19:06:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-26 22:58:48 +00:00
										 |  |  | typedef struct PyMethodChain { | 
					
						
							| 
									
										
										
										
											2000-07-09 00:20:36 +00:00
										 |  |  |     PyMethodDef *methods;		/* Methods of this type */ | 
					
						
							|  |  |  |     struct PyMethodChain *link;	/* NULL or base type */ | 
					
						
							| 
									
										
										
										
											1995-01-26 22:58:48 +00:00
										 |  |  | } PyMethodChain; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-09 00:20:36 +00:00
										 |  |  | extern DL_IMPORT(PyObject *) Py_FindMethodInChain(PyMethodChain *, PyObject *, | 
					
						
							|  |  |  |                                                   char *); | 
					
						
							| 
									
										
										
										
											1995-01-26 22:58:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-07-10 15:21:55 +00:00
										 |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2000-07-09 00:20:36 +00:00
										 |  |  |     PyObject_HEAD | 
					
						
							|  |  |  |     PyMethodDef *m_ml; | 
					
						
							|  |  |  |     PyObject    *m_self; | 
					
						
							| 
									
										
										
										
											1998-07-10 15:21:55 +00:00
										 |  |  | } PyCFunctionObject; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1993-07-28 09:05:47 +00:00
										 |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #endif /* !Py_METHODOBJECT_H */
 |