Tagged Questions

1
vote
4answers
187 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 ...
1
vote
2answers
233 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 ...
0
votes
3answers
3k views

Convert char* to wchar* in C

I would like to convert a char* string to a wchar* string in C. I have found many answers, but most of them are for C++. Could you help me? Thanks.
0
votes
1answer
886 views

How to convert 'const wchar*' to 'const char*' on Mac OS X?

Is there a elegant way to convert 'const wchar *' to 'const char *' on Mac OS X? Kat
-1
votes
2answers
181 views

'strcpy' : cannot convert parameter 2 from 'WCHAR *' to 'const char *

Having some issues with strcpy... Getting this error: strcpy' : cannot convert parameter 2 from 'WCHAR *' to 'const char * Here is the code... char FunctionName[ 256 ]; UFunction *pUFunc ...