Alexandre Julliard | c6c0944 | 1997-01-12 18:32:19 +0000 | [diff] [blame] | 1 | #ifndef __WINE_COMM_H |
| 2 | #define __WINE_COMM_H |
Alexandre Julliard | 6b81b39 | 1994-07-07 16:23:58 +0000 | [diff] [blame] | 3 | |
Alexandre Julliard | 670cdc4 | 1997-08-24 16:00:30 +0000 | [diff] [blame] | 4 | #define MAX_PORTS 9 |
Alexandre Julliard | 6b81b39 | 1994-07-07 16:23:58 +0000 | [diff] [blame] | 5 | |
| 6 | struct DosDeviceStruct { |
| 7 | char *devicename; /* /dev/cua1 */ |
| 8 | int fd; |
| 9 | int suspended; |
Ove Kaaven | a4dd1be | 1999-04-01 11:52:16 +0000 | [diff] [blame] | 10 | int unget,xmit; |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 11 | int baudrate; |
Ove Kaaven | a88444e | 1999-06-12 06:43:48 +0000 | [diff] [blame] | 12 | int evtchar; |
Ove Kaaven | a1c45a5 | 1999-03-21 15:45:41 +0000 | [diff] [blame] | 13 | /* events */ |
| 14 | int commerror, eventmask; |
| 15 | /* buffers */ |
| 16 | char *inbuf,*outbuf; |
Ove Kaaven | a4dd1be | 1999-04-01 11:52:16 +0000 | [diff] [blame] | 17 | unsigned ibuf_size,ibuf_head,ibuf_tail; |
| 18 | unsigned obuf_size,obuf_head,obuf_tail; |
Ove Kaaven | a1c45a5 | 1999-03-21 15:45:41 +0000 | [diff] [blame] | 19 | /* notifications */ |
| 20 | int wnd, n_read, n_write; |
Alexandre Julliard | 6b81b39 | 1994-07-07 16:23:58 +0000 | [diff] [blame] | 21 | }; |
| 22 | |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 23 | extern void COMM_Init(void); |
Alexandre Julliard | 234bc24 | 1994-12-10 13:02:28 +0000 | [diff] [blame] | 24 | |
Alexandre Julliard | c6c0944 | 1997-01-12 18:32:19 +0000 | [diff] [blame] | 25 | #endif /* __WINE_COMM_H */ |