Commit d9aa7362 authored by captainwong's avatar captainwong

unicodetool.h

parent 56988d7a
#pragma once
#include <windows.h>
bool Utf16ToUtf8(const wchar_t* utf16String, char* utf8Buffer, size_t szBuff)
{
size_t request_size = WideCharToMultiByte(CP_UTF8, 0, utf16String, -1, NULL, 0, 0, 0);
if (1 < request_size && request_size < szBuff) {
WideCharToMultiByte(CP_UTF8, 0, utf16String, -1, utf8Buffer, request_size, 0, 0);
return true;
}
return false;
}
bool Utf8ToUtf16(const char* utf8String, wchar_t* utf16Buffer, size_t szBuff)
{
size_t request_size = MultiByteToWideChar(CP_UTF8, 0, utf8String, -1, NULL, 0);
if (1 < request_size && request_size < szBuff) {
MultiByteToWideChar(CP_UTF8, 0, utf8String, -1, utf16Buffer, request_size);
return true;
}
return false;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment