types.h (308B)
1 2 #ifndef PROTOVERSE_TYPES_H 3 #define PROTOVERSE_TYPES_H 4 5 typedef unsigned char u8; 6 typedef signed char s8; 7 8 typedef unsigned short u16; 9 typedef signed short s16; 10 11 typedef unsigned int u32; 12 typedef signed int s32; 13 14 typedef unsigned long long u64; 15 typedef signed long long s64; 16 17 #endif /* PROTOVERSE_TYPES_H */