1 #ifndef CPP3DS_CONFIG_HPP
2 #define CPP3DS_CONFIG_HPP
8 #define CPP3DS_VERSION_MAJOR 0
9 #define CPP3DS_VERSION_MINOR 1
21 typedef signed char Int8;
22 typedef unsigned char Uint8;
25 typedef signed short Int16;
26 typedef unsigned short Uint16;
29 typedef signed int Int32;
30 typedef unsigned int Uint32;
34 typedef signed __int64 Int64;
35 typedef unsigned __int64 Uint64;
37 typedef signed long long Int64;
38 typedef unsigned long long Uint64;