I need to use L"" to convert string to LPWSTR in path string variable
1 2 3 4 5
|
//this work for me
LPWSTR test = L"c:\\aizen.png";
//but I need something like this
string path="c:\\aizen.png";
LPWSTR test = L""path; // didn't work
|
thanks
Last edited on
Last edited on
I used mbstowcs() and it work fine thanks Andy.
Last edited on