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 / funcobject_c.h < prev    next >
C/C++ Source or Header  |  2000-12-21  |  426b  |  15 lines

  1. #ifndef FUNCOBJECT_C_H
  2. #define FUNCOBJECT_C_H
  3.  
  4. #include "proto_defs.h"
  5.  
  6.  
  7. DESTRUCTOR_PROTO(func_dealloc, PyFunctionObject) SEG_FUNCOBJECT_C;
  8. GETATTRFUNC_PROTO(func_getattr, PyFunctionObject) SEG_FUNCOBJECT_C;
  9. CMPFUNC_PROTO(func_compare, PyFunctionObject) SEG_FUNCOBJECT_C;
  10. REPRFUNC_PROTO(func_repr, PyFunctionObject) SEG_FUNCOBJECT_C;
  11. HASHFUNC_PROTO(func_hash, PyFunctionObject) SEG_FUNCOBJECT_C;
  12.  
  13.  
  14. #endif /* FUNCOBJECT_C_H */
  15.