types.h (253B)
1 typedef unsigned int uint; 2 typedef unsigned short ushort; 3 typedef unsigned char uchar; 4 5 typedef unsigned int uint32; 6 typedef unsigned long uint64; 7 8 #if X64 9 typedef unsigned long uintp; 10 #else 11 typedef unsigned int uintp; 12 #endif 13 14 typedef uintp pde_t;