A bad but useable way to deal with _TCHAR* argv[] parameter

from: http://stackoverflow.com/questions/19301538/converting-tchar-to-char
==Warning: this is a temporary solution and shouldn’t be used as a long-term solution. ==


Instead of using the original one, just use int main(int argc, char *argv[]) instead. The new type _TCHAR is actually a macro of a longer char that allows more kinds of characters (char is 128 which is not enough) just for compatible purpose. Since I don’t need internalizations now anyways, I think it’s safe to do that.