From 576f41fb5bb6a85fd2740c3715ff4437ea36e651 Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Thu, 22 Feb 2007 01:38:04 +0000 Subject: [PATCH] msvc2005 fix --- src/plugin_winamp2/tagz.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/plugin_winamp2/tagz.h b/src/plugin_winamp2/tagz.h index d2e95fc5..08622932 100644 --- a/src/plugin_winamp2/tagz.h +++ b/src/plugin_winamp2/tagz.h @@ -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