diff options
Diffstat (limited to 'Include/sysmodule.h')
-rw-r--r-- | Include/sysmodule.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Include/sysmodule.h b/Include/sysmodule.h index 719ecfcf61..b709629ec6 100644 --- a/Include/sysmodule.h +++ b/Include/sysmodule.h @@ -16,6 +16,12 @@ PyAPI_FUNC(int) _PySys_SetObjectId(_Py_Identifier *key, PyObject *); PyAPI_FUNC(void) PySys_SetArgv(int, wchar_t **); PyAPI_FUNC(void) PySys_SetArgvEx(int, wchar_t **, int); +#ifdef Py_BUILD_CORE +PyAPI_FUNC(_PyInitError) _PySys_SetArgvWithError( + int argc, + wchar_t **argv, + int updatepath); +#endif PyAPI_FUNC(void) PySys_SetPath(const wchar_t *); PyAPI_FUNC(void) PySys_WriteStdout(const char *format, ...) |