home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 April / PCWorld_2001-04_cd.bin / Software / TemaCD / webclean / !!!python!!! / BeOpen-Python-2.0.exe / EVAL.H < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-01  |  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.