00001 #ifndef WIN32 00002 #include <stdint.h> 00003 #else 00004 #ifndef STDINT_H 00005 #define STDINT_H 00006 00007 typedef char int8_t; 00008 typedef unsigned char uint8_t; 00009 typedef short int16_t; 00010 typedef unsigned short uint16_t; 00011 typedef long int32_t; 00012 typedef unsigned long uint32_t; 00013 typedef long long int64_t; 00014 typedef unsigned long long uint64_t; 00015 00016 #endif 00017 #endif