Go to the source code of this file.
Typedefs |
typedef char | c8 |
typedef float | f32 |
typedef double | f64 |
typedef signed short int | s16 |
typedef signed int | s32 |
typedef signed long long int | s64 |
typedef signed char | s8 |
typedef unsigned short int | u16 |
typedef unsigned int | u32 |
typedef unsigned long long int | u64 |
typedef unsigned char | u8 |
Typedef Documentation
8 bit character variable. This is a typedef for char, it ensures portability of the engine.
32 bit floating point variable. This is a typedef for float, it ensures portability of the engine.
64 bit floating point variable. This is a typedef for double, it ensures portability of the engine.
typedef signed short int s16 |
16 bit signed variable. This is a typedef for signed short, it ensures portability of the engine.
32 bit signed variable. This is a typedef for signed int, it ensures portability of the engine.
typedef signed long long int s64 |
64 bit signed variable. This is a typedef for signed 64 bit int, it ensures portability of the engine.
8 bit signed variable. This is a typedef for signed char, it ensures portability of the engine.
typedef unsigned short int u16 |
16 bit unsigned variable. This is a typedef for unsigned short, it ensures portability of the engine.
32 bit unsigned variable. This is a typedef for unsigned int, it ensures portability of the engine.
typedef unsigned long long int u64 |
64 bit unsigned variable. This is a typedef for unsigned 64 bit int, it ensures portability of the engine.
8 bit unsigned variable. This is a typedef for unsigned char, it ensures portability of the engine.