Tagged Questions

1
vote
3answers
480 views

Why is the following C++ code printing only the first character?

I am trying to convert a char string to a wchar string. In more detail: I am trying to convert a char[] to a wchar[] first and then append " 1" to that string and the print it. char src[256] = ...
0
votes
2answers
227 views

WCHAR overflow when performing wcscpy_s

When trying to retrieve a massive folder path from an outlook mailbox (no 255 char max length in path) I seem not be be handling it correctly, yet i have tried everything on the code and nothing seems ...
0
votes
3answers
241 views

C++ , winapi Compare two WCHAR * strings

I want to campare to WCHAR * strings. How to do it. P.S. I would like to ignore case while comparing. I know you can use strcmpi but it id not working for WCHAR *. Thanks for any help.
0
votes
2answers
281 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 ...