Files
Sun1602/Utility/tstring.h
T
2022-10-26 12:25:11 +08:00

22 lines
267 B
C++

#ifndef __TSTRING_H__
#define __TSTRING_H__
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
#pragma once
#endif
#include <string>
#include <tchar.h>
namespace util
{
#ifdef _UNICODE
typedef std::wstring _tstring;
#else
typedef std::string _tstring;
#endif
}
#endif