Go to the documentation of this file.
25 typedef unsigned char u8;
26 typedef unsigned short u16;
27 typedef unsigned int u32;
33 #if defined(LIBSMBIOS_HAS_LONG_LONG)
34 typedef unsigned long long u64;
35 typedef long long s64;
36 #elif defined(LIBSMBIOS_HAS_MS_INT64)
37 typedef unsigned __int64 u64;
40 #error "No LONG LONG or __INT64 support. Current compiler config is not supported."