secgateway/Common/common_types.h

20 lines
266 B
C
Executable File

#ifndef _COMMON_TYPES_H
#define _COMMON_TYPES_H
#ifndef u8
typedef unsigned char u8;
#endif
#ifndef u16
typedef unsigned short u16;
#endif
#ifndef u32
typedef unsigned int u32;
#endif
#ifndef u32
typedef unsigned long long u64;
#endif
#endif