#ifndef TYPEDEF_H #define TYPEDEF_H typedef int BOOL; typedef unsigned char BYTE; typedef unsigned short int WORD; typedef unsigned long int DWORD; typedef unsigned char u8; typedef unsigned short int u16; typedef unsigned int u32; typedef char s8; typedef short int s16; typedef int s32; #endif // TYPEDEF_H