home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 May / PCWorld_2002-05_cd.bin / Software / TemaCD / activepython / ActivePython-2.1.1.msi / Python21_include_eval.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-07-26  |  266 b   |  16 lines

  1.  
  2. /* Interface to execute compiled code */
  3.  
  4. #ifndef Py_EVAL_H
  5. #define Py_EVAL_H
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9.  
  10. DL_IMPORT(PyObject *) PyEval_EvalCode(PyCodeObject *, PyObject *, PyObject *);
  11.  
  12. #ifdef __cplusplus
  13. }
  14. #endif
  15. #endif /* !Py_EVAL_H */
  16.