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.
So I've been playing with C++ and XML (Xerces C++ DOM), and am working on a simple prototype class factory that creates instances of various classes based on the contents of a given XML file. To make ...