I'm looking for a method, or a code snippet for converting std::string to LPCWSTR
|
feedback
|
|
Thanks for the link to the MSDN article. This is exactly what I was looking for.
| |||||||||||||
feedback
|
|
A simple google search yields: | ||||
feedback
|
|
@Chris Fournier:
Why do you regard freeing the buffer as optional (it should free the buffer even if the second call to MultiByteToWideChar fails), and why do you corrupt your free store (you should use delete[] for arrays)? | |||
|
feedback
|
|
If you are in an ATL/MFC environment, You can use the ATL conversion macro:
You can then use unicodeStr as an LPCWSTR. The memory for the unicode string is created on the stack and released then the destructor for unicodeStr executes. | |||
|
feedback
|
|
Instead of using a std::string, you could use a std::wstring. EDIT: Sorry this is not more explanatory, but I have to run. Use std::wstring::c_str() | |||
|
feedback
|
|
The solution is actually a lot easier than any of the other suggestions: std::wstring(s.begin(), s.end()).c_str() Best of all, it's platform independent. h2h :) | |||||
feedback
|