C MIP-SDK
|
00001 00002 // 00006 // 00008 // 00009 // External dependencies: 00010 // 00011 // 00012 // 00014 // 00017 // 00027 // 00029 00030 #ifndef _MIP_TYPES_H 00031 #define _MIP_TYPES_H 00032 00034 // 00035 //Include Files 00036 // 00038 00039 00041 // 00042 // Defines 00043 // 00046 00047 00048 typedef signed long long s64; 00049 typedef int s32; 00050 typedef short s16; 00051 typedef char s8; 00052 00053 typedef unsigned long long u64; 00054 typedef unsigned int u32; 00055 typedef unsigned short u16; 00056 typedef unsigned char u8; 00057 00058 00060 // 00061 // Structures 00062 // 00064 00065 00067 // 00068 // Function Prototypes 00069 // 00071 00072 00073 00074 #endif