In Visual C++, I have a
LPWSTR mystring;
which is already defined somewhere else in the code.
I want to create a new LPWSTR containing:
"hello " + mystring + " blablabla" (i.e. a concatenation)
I'm getting mad with such a simple thing (concatenation)! Thanks a lot in advance, I'm lost!
LPWSTR
!?!?! Downvoter, totally inappropriate. – Jasetypedef wchar_t* LPWSTR, *PWSTR;
– Terrazastypedef
s I have ever seen! – JaseLPWSTR
if not a preprocessor macro? Oh wait, no, it's a no-brainer typedef... Well played, Microsoft, don't even leave a small hole for obeying standards... – Chiang