Lines Matching refs:PyAPI_FUNC
10 PyAPI_FUNC(PyObject *) PySys_GetObject(const char *);
11 PyAPI_FUNC(int) PySys_SetObject(const char *, PyObject *);
13 PyAPI_FUNC(void) PySys_SetArgv(int, wchar_t **);
14 PyAPI_FUNC(void) PySys_SetArgvEx(int, wchar_t **, int);
15 PyAPI_FUNC(void) PySys_SetPath(const wchar_t *);
17 PyAPI_FUNC(void) PySys_WriteStdout(const char *format, ...)
19 PyAPI_FUNC(void) PySys_WriteStderr(const char *format, ...)
21 PyAPI_FUNC(void) PySys_FormatStdout(const char *format, ...);
22 PyAPI_FUNC(void) PySys_FormatStderr(const char *format, ...);
24 PyAPI_FUNC(void) PySys_ResetWarnOptions(void);
25 PyAPI_FUNC(void) PySys_AddWarnOption(const wchar_t *);
26 PyAPI_FUNC(void) PySys_AddWarnOptionUnicode(PyObject *);
27 PyAPI_FUNC(int) PySys_HasWarnOptions(void);
29 PyAPI_FUNC(void) PySys_AddXOption(const wchar_t *);
30 PyAPI_FUNC(PyObject *) PySys_GetXOptions(void);