diff options
| author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-07-23 09:51:15 +0100 |
|---|---|---|
| committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-07-23 09:51:15 +0100 |
| commit | 77911533dc68731f50f40b18cd44e287df28f476 (patch) | |
| tree | d2f08b7df7c836cf6d23551a0a97cf0769e1ec3a /indra/llcommon/llstring.h | |
| parent | 7ee930ea4a5721077974bc5b24d8cc1c6b6a2fae (diff) | |
| parent | 66bdd0903d1ded7a2e113938ad47ad8d6076416b (diff) | |
merge from PE's viewer-release
Diffstat (limited to 'indra/llcommon/llstring.h')
| -rw-r--r-- | indra/llcommon/llstring.h | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/indra/llcommon/llstring.h b/indra/llcommon/llstring.h index 8071c8aa2d..41fac0f8cc 100644 --- a/indra/llcommon/llstring.h +++ b/indra/llcommon/llstring.h @@ -564,7 +564,20 @@ using snprintf_hack::snprintf; * * This replaces the unsafe W2A macro from ATL. */ -LL_COMMON_API std::string ll_convert_wide_to_string(const wchar_t* in); +LL_COMMON_API std::string ll_convert_wide_to_string(const wchar_t* in, unsigned int code_page); + +/** + * Converts a string to wide string. + * + * It will allocate memory for result string with "new []". Don't forget to release it with "delete []". + */ +LL_COMMON_API wchar_t* ll_convert_string_to_wide(const std::string& in, unsigned int code_page); + +/** + * Converts incoming string into urf8 string + * + */ +LL_COMMON_API std::string ll_convert_string_to_utf8_string(const std::string& in); //@} #endif // LL_WINDOWS |
