cccc05c681bb9e3069edc0595648ce2963f63257
[reactos.git] / reactos / drivers / usb / cromwell / linux / cromwell_types.h
1 #ifndef cromwell_types_h
2 #define cromwell_types_h
3
4 /////////////////////////////////
5 // some typedefs to make for easy sizing
6
7 //typedef unsigned long ULONG;
8 typedef unsigned int u32;
9 typedef unsigned short u16;
10 typedef unsigned char u8;
11 #ifndef bool_already_defined_
12 typedef int bool;
13 #endif
14 typedef unsigned long RGBA; // LSB=R -> MSB = A
15 //typedef long long __int64;
16
17 #define guint int
18 #define guint8 unsigned char
19
20 #define true 1
21 #define false 0
22
23 #ifndef NULL
24 #define NULL ((void *)0)
25 #endif
26
27 #endif /* #ifndef cromwell_types_h */