repo.or.cz
/
wine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Release 960314
[wine.git]
/
include
/
comm.h
blob
0d3df44463205bf8008528d6302bb8ba4df7dc1b
1
#ifndef COMM_H
2
#define COMM_H
3
4
#define MAX_PORTS 16
5
6
struct
DosDeviceStruct
{
7
char
*
devicename
;
/* /dev/cua1 */
8
int
fd
;
9
int
suspended
;
10
int
unget
;
11
int
unget_byte
;
12
int
baudrate
;
13
};
14
15
extern
void
COMM_Init
(
void
);
16
17
#endif
/* COMM_H */