XMMS2
xmmsc_stdint.h
Go to the documentation of this file.
1#ifndef XMMSC_STDINT_H
2#define XMMSC_STDINT_H
3
4#ifdef _MSC_VER
5typedef __int64 int64_t;
6typedef __int32 int32_t;
7typedef __int16 int16_t;
8typedef __int8 int8_t;
9typedef unsigned __int64 uint64_t;
10typedef unsigned __int32 uint32_t;
11typedef unsigned __int16 uint16_t;
12typedef unsigned __int8 uint8_t;
13
14#else
15#include <inttypes.h>
16
17#endif
18
19#endif