repo.or.cz
/
linux-2.6.9-moxart.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
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
blob
dcdabfe9b13f1f1931225f25ac86f0f0daa9c75d
1
#ifndef __ZDTYPES_H__
2
#define __ZDTYPES_H__
3
4
#ifndef U8
5
typedef
unsigned char
U8
;
6
#endif
7
8
#ifndef U16
9
typedef
unsigned short
U16
;
10
#endif
11
12
#ifndef U32
13
typedef
unsigned long
U32
;
14
#endif
15
16
#ifndef U64
17
typedef
unsigned long long
U64
;
18
#endif
19
20
#ifndef BOOLEAN
21
typedef
U8 BOOLEAN
;
22
#endif
23
24
#ifndef TRUE
25
#define TRUE 1
26
#endif
27
28
#ifndef FALSE
29
#define FALSE 0
30
#endif
31
32
#endif