In my code, I receive a const char array
like the following:
const char * myString = someFunction();
Now I want to postprocess it as a wchar array
since the functions I use afterwards don't handle narrow strings.
What is the easiest way to accomplish this goal?
Eventually MultiByteToWideChar? (However, since it is a narrow string which I get as input, it doesn't have multibyte characters => probably not the most beautiful solution)