Hi All,
Can anyone tell me what this prefix _T means in some C++ code?
Thanks,
Farhan
It is probably a macro to handle Unicode/non-Unicode in windows.
See: http://msdn.microsoft.com/en-us/library/dybsewaf(VS.80).aspx
If it's a lowercase _t, like wchar_t, I think it has something to do with a naming convention for typedefs in C.