converting std::string to TCHAR

Hi

I need to convert an stl string to a TCHAR*. I found lots of information searching on the web, but I can't understand what is the best method. I want somenthig like this:

std::string myString = "hello";

TCHAR* myTcharString = [somefuntion](myString);

Someone knows the answer

thanks


Answer this question

converting std::string to TCHAR