Hi all,
I'm coding up a new (personal hobby) app for Windows in c++.
In previous low-level Windows stuff I've used _TCHAR (or just TCHAR) arrays/basic_strings for string manipulation.
Is there any advantage to using _TCHAR over straight up Unicode with wchar_t, if I don't care about Windows platforms pre Win2k?
edit: after submitting I discovered a similar question here from Oct 2008:
http://stackoverflow.com/questions/234365/is-tchar-still-relevant
Seems to be more consensus now about ditching TCHAR