summaryrefslogtreecommitdiff
path: root/apps/codecs/libwavpack/wavpack.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libwavpack/wavpack.h')
-rw-r--r--apps/codecs/libwavpack/wavpack.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/apps/codecs/libwavpack/wavpack.h b/apps/codecs/libwavpack/wavpack.h
index af9d88dfe6..98dba8631b 100644
--- a/apps/codecs/libwavpack/wavpack.h
+++ b/apps/codecs/libwavpack/wavpack.h
@@ -8,18 +8,15 @@
8 8
9// wavpack.h 9// wavpack.h
10 10
11#include <sys/types.h> 11#include <inttypes.h>
12 12
13// This header file contains all the definitions required by WavPack. 13// This header file contains all the definitions required by WavPack.
14 14
15// not sure about them.. testing will bring more light into it..
15typedef unsigned char uchar; 16typedef unsigned char uchar;
16#if !defined(__GNUC__) || defined(WIN32)
17typedef unsigned short ushort; 17typedef unsigned short ushort;
18typedef unsigned long ulong; 18typedef unsigned long ulong;
19typedef unsigned int uint; 19typedef unsigned int uint;
20#elif defined(__APPLE__)
21typedef unsigned long ulong;
22#endif
23 20
24// This structure is used to access the individual fields of 32-bit ieee 21// This structure is used to access the individual fields of 32-bit ieee
25// floating point numbers. This will not be compatible with compilers that 22// floating point numbers. This will not be compatible with compilers that