diff options
Diffstat (limited to 'common/ustr.h')
-rw-r--r-- | common/ustr.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/common/ustr.h b/common/ustr.h index 7f20207969..17858d489e 100644 --- a/common/ustr.h +++ b/common/ustr.h @@ -218,16 +218,20 @@ private: }; U32String convertUtf8ToUtf32(const String &str); +String convertUtf32ToUtf8(const U32String &str); enum CodePage { kUtf8, kWindows1250, kWindows1251, kWindows1252, - kWindows1255 + kWindows1253, + kWindows1255, + kWindows1257 }; U32String convertToU32String(const char *str, CodePage page = kUtf8); +String convertFromU32String(const U32String &str, CodePage page = kUtf8); } // End of namespace Common |