home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2016 / linuxmafia.com.tar / linuxmafia.com / pub / palmos / pippy-0.6beta-src.tar.gz / pippy-0.6beta-src.tar / pippy-0.6beta-src / src / Include / other / methodobject_c.h < prev    next >
C/C++ Source or Header  |  2000-12-21  |  528b  |  16 lines

  1. #ifndef METHODOBJECT_C_H
  2. #define METHODOBJECT_C_H
  3.  
  4. #include "proto_defs.h"
  5.  
  6.  
  7. DESTRUCTOR_PROTO(meth_dealloc, PyCFunctionObject) SEG_METHODOBJECT_C;
  8. GETATTRFUNC_PROTO(meth_getattr, PyCFunctionObject) SEG_METHODOBJECT_C;
  9. CMPFUNC_PROTO(meth_compare, PyCFunctionObject) SEG_METHODOBJECT_C;
  10. REPRFUNC_PROTO(meth_repr, PyCFunctionObject) SEG_METHODOBJECT_C;
  11. HASHFUNC_PROTO(meth_hash, PyCFunctionObject) SEG_METHODOBJECT_C;
  12.  
  13. static PyObject *listmethodchain Py_PROTO((PyMethodChain *)) SEG_METHODOBJECT_C;
  14.  
  15. #endif /* METHODOBJECT_C_H */
  16.