47 #ifndef _MIRA_TYPES_H_ 48 #define _MIRA_TYPES_H_ 61 typedef int16_t int16;
62 typedef int32_t int32;
63 typedef int64_t int64;
64 typedef uint8_t uint8;
65 typedef uint16_t uint16;
66 typedef uint32_t uint32;
67 typedef uint64_t uint64;
69 #elif defined(MIRA_WINDOWS) 71 typedef signed __int8 int8;
72 typedef signed __int16 int16;
73 typedef signed __int32 int32;
74 typedef signed __int64 int64;
75 typedef unsigned __int8 uint8;
76 typedef unsigned __int16 uint16;
77 typedef unsigned __int32 uint32;
78 typedef unsigned __int64 uint64;