Skip to content

Latest commit

 

History

History
36 lines (19 loc) · 658 Bytes

File metadata and controls

36 lines (19 loc) · 658 Bytes

 

 

 

 

 

 

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(); }