2025-04-27 07:49:33 -04:00

13 lines
221 B
C++

#ifndef _TString_H_DEF_
#define _TString_H_DEF_
#include <string>
#if defined(_UNICODE) || defined(UNICODE)
typedef std::wstring TSTRING;
#else
typedef std::string TSTRING;
#endif
#endif // _TString_H_DEF_