1. We often see the _T("some text") in c++ codes
2. it is used to expand the text into unicode text or ascii texts. which depends whether you have defined the _UNICODE macro
3. if you have defined _UNICODe, then _T("x") we be expanded into L"x"
if you have not, it will be expanded into just ascii encoded string "x"
阅读(818) | 评论(0) | 转发(0) |