Tagged Questions

1
vote
4answers
188 views

wchar_t* to char* conversion problems

I have a problem with wchar_t* to char* conversion. I'm getting a wchar_t* string from the FILE_NOTIFY_INFORMATION structure, returned by the ReadDirectoryChangesW WinAPI function, so I assume that ...
0
votes
2answers
295 views

What is the easiest way to convert a char array to a WCHAR array?

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 ...