diff options
Diffstat (limited to 'Include/fileutils.h')
-rw-r--r-- | Include/fileutils.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Include/fileutils.h b/Include/fileutils.h index 900c70f..b7b6cd2 100644 --- a/Include/fileutils.h +++ b/Include/fileutils.h @@ -13,10 +13,13 @@ PyAPI_FUNC(wchar_t *) Py_DecodeLocale( PyAPI_FUNC(char*) Py_EncodeLocale( const wchar_t *text, size_t *error_pos); + +PyAPI_FUNC(char*) _Py_EncodeLocaleRaw( + const wchar_t *text, + size_t *error_pos); #endif #ifndef Py_LIMITED_API - PyAPI_FUNC(PyObject *) _Py_device_encoding(int); #ifdef MS_WINDOWS |