Imported Upstream version 0.9.0
[deb_shairplay.git] / src / lib / alac / stdint_win.h
1
2 #ifndef ALAC_STDINT_WIN_H__
3 #define ALAC_STDINT_WIN_H__
4
5 typedef signed char int8_t;
6 typedef signed short int16_t;
7 typedef signed int int32_t;
8 typedef signed __int64 int64_t;
9 typedef unsigned char uint8_t;
10 typedef unsigned short uint16_t;
11 typedef unsigned int uint32_t;
12 typedef unsigned __int64 uint64_t;
13
14 #endif // ALAC_STDINT_WIN_H__