blob: 0d3df44463205bf8008528d6302bb8ba4df7dc1b [file] [log] [blame]
#ifndef COMM_H
#define COMM_H
#define MAX_PORTS 16
struct DosDeviceStruct {
char *devicename; /* /dev/cua1 */
int fd;
int suspended;
int unget;
int unget_byte;
int baudrate;
};
extern void COMM_Init(void);
#endif /* COMM_H */