XMMS2
|
00001 #ifndef XMMSC_STDINT_H 00002 #define XMMSC_STDINT_H 00003 00004 #ifdef _MSC_VER 00005 typedef __int64 int64_t; 00006 typedef __int32 int32_t; 00007 typedef __int16 int16_t; 00008 typedef __int8 int8_t; 00009 typedef unsigned __int64 uint64_t; 00010 typedef unsigned __int32 uint32_t; 00011 typedef unsigned __int16 uint16_t; 00012 typedef unsigned __int8 uint8_t; 00013 00014 #else 00015 #include <inttypes.h> 00016 00017 #endif 00018 00019 #endif