Can anyone here remember the syntax required to use a string variable as a filename for a data file? As in:<P>the variable is "fileName"<P><B>char fileName[16] = "";</B><P>and it is decided with user ...
How do I get a wchar_t* string from a C++ std::string? std::string.c_str() gives the char* string but I need the wide-charater version to pass into UNICODE version of Windows APIs.