home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 15 / AACD15.ISO / AACD / Programming / Python2 / Python20_source / Include / eval.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-10-25  |  251 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.