11 lines
171 B
C
11 lines
171 B
C
|
/* rboot type definitions */
|
||
|
|
||
|
|
||
|
typedef int int32;
|
||
|
typedef unsigned short uint16;
|
||
|
typedef unsigned int uint32;
|
||
|
typedef unsigned char uint8;
|
||
|
|
||
|
#define TRUE 1
|
||
|
#define FALSE 0
|