diff options
author | elupus <elupus@xbmc.org> | 2011-03-24 01:29:03 +0100 |
---|---|---|
committer | elupus <elupus@xbmc.org> | 2011-03-24 01:29:03 +0100 |
commit | f438af0d54310e4528bcefeb3e3cdcbf2c1ea838 (patch) | |
tree | 4ce2db8bc7c4edc4808c754deaffb7dd3ab52920 /lib/DllWAVPack.h | |
parent | 86c4c4b606d25111b03ee817ef0b9a3eb953e4da (diff) |
fixed: compile on windows
No idea if this is correct. #ifndef can't check typedefs. So if WavpackStreamReader was a typedef before this check would not have worked.
Diffstat (limited to 'lib/DllWAVPack.h')
-rw-r--r-- | lib/DllWAVPack.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/DllWAVPack.h b/lib/DllWAVPack.h index 78a898a977..b45c968a8a 100644 --- a/lib/DllWAVPack.h +++ b/lib/DllWAVPack.h @@ -36,10 +36,10 @@ // API changes from 4.2 to 4.60.1. #ifndef WavpackStreamReader -typedef WavpackStreamReader stream_reader; +#define WavpackStreamReader stream_reader; #endif #ifndef WavpackBlockOutput -typedef WavpackBlockOutput blockout_f; +#define WavpackBlockOutput blockout_f; #endif class DllWavPackInterface |