Home > char


charからLPWSTRへの変換方法

MultiByteToWideChar関数を使用する方法:#include <Windows.h> LPWSTR ConvertToLPWSTR(const char* text) { int size = MultiByteToWideChar(CP_UTF8, 0, text, -1, NULL, 0); LPWSTR wideText = new WCHAR[size]; MultiByteToWideChar(CP_UTF8, 0, text, -1, wideText, size); return wideText; }>>More