Tagged Questions

1
vote
2answers
222 views

How can I copy a CHAR Variable to WCHAR Variable in C++

I want to convert a CHAR file to UNICODE file. I read a file character by character in CHAR file type and then save this character in a CHAR Variable and then I want to copy this CHAR Variable to a ...
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, ...
0
votes
2answers
43 views

Win32 strange widechar behavior

I haven't used wide chars before. Here's the code from someone else: char moduleFileName[512]; int size = ::GetModuleFileName(NULL,moduleFileName,sizeof(moduleFileName)); char c_drive[256]; char ...