MOXA linux-2.6.x / linux-2.6.9-uc0 from sdlinux-moxaart.tgz
[linux-2.6.9-moxart.git] / drivers / usb / net / Zydas / zdtypes.h
blobdcdabfe9b13f1f1931225f25ac86f0f0daa9c75d
1 #ifndef __ZDTYPES_H__
2 #define __ZDTYPES_H__
4 #ifndef U8
5 typedef unsigned char U8;
6 #endif
8 #ifndef U16
9 typedef unsigned short U16;
10 #endif
12 #ifndef U32
13 typedef unsigned long U32;
14 #endif
16 #ifndef U64
17 typedef unsigned long long U64;
18 #endif
20 #ifndef BOOLEAN
21 typedef U8 BOOLEAN;
22 #endif
24 #ifndef TRUE
25 #define TRUE 1
26 #endif
28 #ifndef FALSE
29 #define FALSE 0
30 #endif
32 #endif