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 / SYSMODULE.H < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-01  |  667 b   |  26 lines

  1.  
  2. /* System module interface */
  3.  
  4. #ifndef Py_SYSMODULE_H
  5. #define Py_SYSMODULE_H
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9.  
  10. DL_IMPORT(PyObject *) PySys_GetObject(char *);
  11. DL_IMPORT(int) PySys_SetObject(char *, PyObject *);
  12. DL_IMPORT(FILE *) PySys_GetFile(char *, FILE *);
  13. DL_IMPORT(void) PySys_SetArgv(int, char **);
  14. DL_IMPORT(void) PySys_SetPath(char *);
  15.  
  16. DL_IMPORT(void) PySys_WriteStdout(const char *format, ...);
  17. DL_IMPORT(void) PySys_WriteStderr(const char *format, ...);
  18.  
  19. extern DL_IMPORT(PyObject *) _PySys_TraceFunc, *_PySys_ProfileFunc;
  20. extern DL_IMPORT(int) _PySys_CheckInterval;
  21.  
  22. #ifdef __cplusplus
  23. }
  24. #endif
  25. #endif /* !Py_SYSMODULE_H */
  26.