Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
221 B

  1. #ifndef _TString_H_DEF_
  2. #define _TString_H_DEF_
  3. #include <string>
  4. #if defined(_UNICODE) || defined(UNICODE)
  5. typedef std::wstring TSTRING;
  6. #else
  7. typedef std::string TSTRING;
  8. #endif
  9. #endif // _TString_H_DEF_