(C++) StrToWide
February 24, 2017 · View on GitHub
(C++) StrToWide
StrToWide converts a std::string to WideString
#include <string> //From http://www.richelbilderbeek.nl/CppStrToWide.htm WideString StrToWide(const std::string& s) { return s.c_str(); }