mirror of
https://github.com/rvtr/TwlIPL.git
synced 2025-10-31 06:01:12 -04:00
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@1697 b08762b0-b915-fc4b-9d8c-17b2551a87ff
24 lines
380 B
C
24 lines
380 B
C
#ifndef MISC_H_
|
|
#define MISC_H_
|
|
#include <time.h>
|
|
|
|
typedef enum
|
|
{
|
|
FALSE = 0,
|
|
TRUE = 1
|
|
}
|
|
BOOL;
|
|
|
|
typedef unsigned char u8;
|
|
typedef unsigned short int u16;
|
|
typedef unsigned long int u32;
|
|
typedef unsigned long long u64;
|
|
|
|
typedef signed char s8;
|
|
typedef signed short int s16;
|
|
typedef signed long int s32;
|
|
typedef signed long long s64;
|
|
|
|
#endif //MISC_H_
|
|
|