Tagged Questions
1
vote
4answers
284 views
How do I convert a WCHAR * to a regular string?
So in Win32 API, I have my main function defined thus:
wmain(int argc, WCHAR* argv[])
I'm passing some arguments to it, and I'd like to execute a switch case based on the value of the argument, ...