//! 32 bit unsigned variable. /** This is a typedef for unsigned int, it ensures portability of the engine. */ #ifdef _MSC_VER //clq//typedef unsigned __int32 u32; typedef unsigned int u32;//clq #else typedef unsigned int u32; #endif
//! 32 bit signed variable. /** This is a typedef for signed int, it ensures portability of the engine. */ #ifdef _MSC_VER //clq//typedef __int32 s32; typedef int s32;//clq #else typedef signed int s32; #endif