PCWSTR pstr(L"abcdef"); int len = WideCharToMultiByte(CP_ACP, 0, pstr, wcslen(pstr), NULL, 0, NULL, NULL); char* buffer = new char[len + 1]; ...
確定! 回上一頁