msvc2005 fix

This commit is contained in:
Josh Coalson
2007-02-22 01:38:04 +00:00
parent 9bedd7827c
commit 576f41fb5b

View File

@@ -9,8 +9,12 @@ typedef unsigned int UINT;
#endif
#ifdef TAGZ_UNICODE
#if _MSC_VER <= 1200
typedef unsigned short T_CHAR;
#else
typedef wchar_t T_CHAR;
#endif
#else
#define T_CHAR char
#endif