1 #pragma once 2 //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 3 typedef signed char int8; 4 typedef unsigned char uint8; 5 typedef unsigned char byte; 6 typedef short int16; 7 typedef unsigned short uint16; 8 typedef long int32; 9 typedef unsigned long uint32; 10 typedef unsigned int uint; 11 12 13 #if defined(_MSC_VER) 14 15 typedef __int64 int64; 16 typedef unsigned __int64 uint64; 17 18 #else 19 20 typedef long long int64; 21 typedef unsigned long long uint64; 22 23 #endif 24