#ifdef UNICODE typedef std::wstring string;#else typedef std::string string;#endif***void foo(){ std::ifstream stream; string file = _T("some file"); stream.open(file);}