You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
490 B
25 lines
490 B
#include "FgUtf8Utils.h"
|
|
#include <Windows.h>
|
|
|
|
CFgUtf8Utils::CFgUtf8Utils()
|
|
{
|
|
}
|
|
|
|
|
|
CFgUtf8Utils::~CFgUtf8Utils()
|
|
{
|
|
}
|
|
|
|
std::wstring CFgUtf8Utils::UTF8_To_UTF16(const char* utf8Text)
|
|
{
|
|
unsigned long len = ::MultiByteToWideChar(CP_UTF8, NULL, utf8Text, -1, NULL, NULL);
|
|
if (len == 0)
|
|
return std::wstring(L"");
|
|
wchar_t *buffer = new wchar_t[len];
|
|
::MultiByteToWideChar(CP_UTF8, NULL, utf8Text, -1, buffer, len);
|
|
|
|
std::wstring dest(buffer);
|
|
delete[] buffer;
|
|
|
|
return dest;
|
|
}
|