fix FS#8187 - charging breaks sleep timer. Now if the timer goes off and the player...
[Rockbox.git] / apps / plugins / rockboy / defs.h
blobe55e91deec84146b4829c29208585d3a2742f6da
1 #ifndef __DEFS_H__
2 #define __DEFS_H__
4 #include "rockmacros.h"
6 #ifdef ROCKBOX_LITTLE_ENDIAN
7 #define LO 0
8 #define HI 1
9 #else
10 #define LO 1
11 #define HI 0
12 #endif
14 typedef unsigned char byte;
16 typedef unsigned char un8;
17 typedef unsigned short un16;
18 typedef unsigned int un32;
20 typedef signed char n8;
21 typedef signed short n16;
22 typedef signed int n32;
24 typedef un16 word;
25 typedef word addr;
28 #endif