summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Coalson <jcoalson@users.sourceforce.net>2007-02-22 01:38:04 +0000
committerJosh Coalson <jcoalson@users.sourceforce.net>2007-02-22 01:38:04 +0000
commit576f41fb5bb6a85fd2740c3715ff4437ea36e651 (patch)
tree33c9849324ec2524ca604422094ee609ccc684e1
parent9bedd7827c4be1e0418418f6ca3fa91b957ff6db (diff)
downloadflac-576f41fb5bb6a85fd2740c3715ff4437ea36e651.tar.gz
msvc2005 fix
-rw-r--r--src/plugin_winamp2/tagz.h4
1 files changed, 4 insertions, 0 deletions
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