blob: e65df31afa1e54f6dc34728aebb28174550130ba [file] [log] [blame]
Alexandre Julliardc6c09441997-01-12 18:32:19 +00001#ifndef __WINE_COMM_H
2#define __WINE_COMM_H
Alexandre Julliard6b81b391994-07-07 16:23:58 +00003
Alexandre Julliard670cdc41997-08-24 16:00:30 +00004#define MAX_PORTS 9
Alexandre Julliard6b81b391994-07-07 16:23:58 +00005
6struct DosDeviceStruct {
7 char *devicename; /* /dev/cua1 */
8 int fd;
9 int suspended;
10 int unget;
11 int unget_byte;
Alexandre Julliard3a405ba1994-10-30 16:25:19 +000012 int baudrate;
Alexandre Julliard6b81b391994-07-07 16:23:58 +000013};
14
Alexandre Julliard594997c1995-04-30 10:05:20 +000015extern void COMM_Init(void);
Alexandre Julliard234bc241994-12-10 13:02:28 +000016
Alexandre Julliardc6c09441997-01-12 18:32:19 +000017#endif /* __WINE_COMM_H */