0
C++ (VS 2010)에서 wstring으로 LPCWSTR을 변환하고 싶습니다. 이것을 OutputDebugStringW()에서 사용하고 싶습니다.C++ lpcwstr to wstring
감사합니다.
C++ (VS 2010)에서 wstring으로 LPCWSTR을 변환하고 싶습니다. 이것을 OutputDebugStringW()에서 사용하고 싶습니다.C++ lpcwstr to wstring
감사합니다.
음은 다음과 같이 wstring
의 생성자에 LPCWSTR
를 전달합니다
LPCWSTR str=L"fun";
wstring str2(str);