Fixed int25 & int26 error code.
[wine/wine64.git] / include / comm.h
blob3cd3ba4b3de03ec4acf660151d70316b0b0bd264
1 #ifndef __WINE_COMM_H
2 #define __WINE_COMM_H
4 #define MAX_PORTS 9
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 /* events */
14 int commerror, eventmask;
15 /* buffers */
16 char *inbuf,*outbuf;
17 /* notifications */
18 int wnd, n_read, n_write;
21 extern void COMM_Init(void);
23 #endif /* __WINE_COMM_H */