summaryrefslogtreecommitdiff
path: root/plugins/alac/stdint_win.h
blob: a580eb7f0214c8d504e53ae0c01413e5a9ca71f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

#ifndef ALAC_STDINT_WIN_H__
#define ALAC_STDINT_WIN_H__

typedef signed char         int8_t;
typedef signed short        int16_t;
typedef signed int          int32_t;
typedef signed __int64      int64_t;
typedef unsigned char       uint8_t;
typedef unsigned short      uint16_t;
typedef unsigned int        uint32_t;
typedef unsigned __int64    uint64_t;

#endif // ALAC_STDINT_WIN_H__