source: trunk/essentials/dev-lang/python/Include/sysmodule.h@ 3437

Last change on this file since 3437 was 3225, checked in by bird, 19 years ago

Python 2.5

File size: 819 bytes
Line 
1
2/* System module interface */
3
4#ifndef Py_SYSMODULE_H
5#define Py_SYSMODULE_H
6#ifdef __cplusplus
7extern "C" {
8#endif
9
10PyAPI_FUNC(PyObject *) PySys_GetObject(char *);
11PyAPI_FUNC(int) PySys_SetObject(char *, PyObject *);
12PyAPI_FUNC(FILE *) PySys_GetFile(char *, FILE *);
13PyAPI_FUNC(void) PySys_SetArgv(int, char **);
14PyAPI_FUNC(void) PySys_SetPath(char *);
15
16PyAPI_FUNC(void) PySys_WriteStdout(const char *format, ...)
17 Py_GCC_ATTRIBUTE((format(printf, 1, 2)));
18PyAPI_FUNC(void) PySys_WriteStderr(const char *format, ...)
19 Py_GCC_ATTRIBUTE((format(printf, 1, 2)));