I just want to concatenate two LPWSTR to get another LPWSTR.
LPWSTR output1, output2;
I've tried stuff like
wstring out = (*output1) + (*output2);
LPWSTR out = wcscat(output1, output2);
I can't get it to work. I'm trying to output the result using a message box.
MessageBox(NULL, W2T(out), NULL, NULL);
Any ideas?
LPWSTR output1, output2;
I've tried stuff like
wstring out = (*output1) + (*output2);
LPWSTR out = wcscat(output1, output2);
I can't get it to work. I'm trying to output the result using a message box.
MessageBox(NULL, W2T(out), NULL, NULL);
Any ideas?