0
目前我的代碼(typedef _Null_terminated_ CONST WCHAR *LPCWSTR;
):動態創建 「LPCWSTR」 從的std :: string變量變量
LPCWSTR wchar_string(L"ABC");
但需要啓用這樣的事情:
std::string s("ABC");
...
LPCWSTR wchar_string(/* create somehow from variable s */);