1 #if defined(_WIN32) 2 #pragma once 3 4 /* a minimal set of C99 types for use with MSVC */ 5 6 typedef signed char int8_t; 7 typedef short int int16_t; 8 typedef int int32_t; 9 typedef __int64 int64_t; 10 11 typedef unsigned char uint8_t; 12 typedef unsigned short int uint16_t; 13 typedef unsigned int uint32_t; 14 typedef unsigned __int64 uint64_t; 15 16 #endif 17