14 lines
208 B
C
14 lines
208 B
C
#ifndef TYPES_H
|
|
#define TYPES_H
|
|
|
|
#define NULL 0x0
|
|
|
|
typedef unsigned int u32;
|
|
typedef unsigned short u16;
|
|
typedef unsigned char u8;
|
|
typedef int s32;
|
|
typedef short s16;
|
|
typedef char s8;
|
|
|
|
#endif
|