Tagged Questions
0
votes
1answer
885 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 ...