Hi, how can I convert long to LPCWSTR in C++? I need function similar to this one:
LPCWSTR ToString(long num) {
wchar_t snum;
swprintf_s( &snum, 8, L"%l", num);
std::wstring wnum = snum;
return wnum.c_str();
}
|
|
Hi, how can I convert long to LPCWSTR in C++? I need function similar to this one:
|
|||
|
|
|
|
Your function is named "to string", and it's indeed easier (and more universal) to convert to a string than to convert "to LPCWSTR":
If you have an API that needs a
|
||
|
|
|
That function doesn't work because wnum.c_str() points to memory which is freed when wnum is destroyed when the function returns. You need to take a copy of the string before you return it, i.e.
and then when you've finished using the result you need to free it, i.e.
|
||
|
|