tstring string wstring宏定义
版权声明:
本文为博主原创文章,转载请声明原文链接...谢谢。o_0。
更新时间:
2018-04-02 09:46:49
温馨提示:
学无止境,技术类文章有它的时效性,请留意文章更新时间,如发现内容有误请留言指出,防止别人"踩坑",我会及时更新文章
//定义tstring类型
#ifndef __TSTRING__
#define __TSTRING__
# ifdef _UNICODE
typedef wstring tstring;
# else
typedef string tstring;
# endif
#endif
#ifndef __TSTRING__
#define __TSTRING__
# ifdef _UNICODE
typedef wstring tstring;
# else
typedef string tstring;
# endif
#endif