I was looking at some windows directx application code and saw that they use the macro _T(x) to set their window name, when looking at the macro definiton I saw this
#define _T(x) __T(x)
then I followed and looked at __T
#define __T(x) x
Why does this exist?