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(PyObject *) _PySys_GetObjectId(_Py_Identifier *key);
14 PyAPI_FUNC(int) _PySys_SetObjectId(_Py_Identifier *key, PyObject *);
17 PyAPI_FUNC(void) PySys_SetArgv(int, wchar_t **);
18 PyAPI_FUNC(void) PySys_SetArgvEx(int, wchar_t **, int);
19 PyAPI_FUNC(void) PySys_SetPath(const wchar_t *);
21 PyAPI_FUNC(void) PySys_WriteStdout(const char *format, ...)
23 PyAPI_FUNC(void) PySys_WriteStderr(const char *format, ...)
25 PyAPI_FUNC(void) PySys_FormatStdout(const char *format, ...);
26 PyAPI_FUNC(void) PySys_FormatStderr(const char *format, ...);
28 PyAPI_FUNC(void) PySys_ResetWarnOptions(void);
29 PyAPI_FUNC(void) PySys_AddWarnOption(const wchar_t *);
30 PyAPI_FUNC(void) PySys_AddWarnOptionUnicode(PyObject *);
31 PyAPI_FUNC(int) PySys_HasWarnOptions(void);
33 PyAPI_FUNC(void) PySys_AddXOption(const wchar_t *);
34 PyAPI_FUNC(PyObject *) PySys_GetXOptions(void);
37 PyAPI_FUNC(size_t) _PySys_GetSizeOf(PyObject *);
41 PyAPI_FUNC(int) _PySys_AddXOptionWithError(const wchar_t *s);
42 PyAPI_FUNC(int) _PySys_AddWarnOptionWithError(PyObject *option);