1 2 3 4 5 6 7 8 9 10 11 | #ifdef _WIN64 typedef unsigned __int64 size_t; #else typedef _W64 unsigned int size_t; #endif #ifdef _WIN64 typedef unsigned __int64 uintptr_t; #else typedef _W64 unsigned int uintptr_t; #endif |
uintptr_t - unsigned integer type capable of holding a pointer
size_t can store the maximum size of a theoretically possible object of any type (including array).
1 | typedef int_least32_t b32x |
bimbinel
Btw what does mm stand for?