mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
a4dd1bee31
with them, the functionality of async event notifications, mong them EnableCommNotification. Removed a previous hack that was faking the buffers, since we now have real buffers...
24 lines
496 B
C
24 lines
496 B
C
#ifndef __WINE_COMM_H
|
|
#define __WINE_COMM_H
|
|
|
|
#define MAX_PORTS 9
|
|
|
|
struct DosDeviceStruct {
|
|
char *devicename; /* /dev/cua1 */
|
|
int fd;
|
|
int suspended;
|
|
int unget,xmit;
|
|
int baudrate;
|
|
/* events */
|
|
int commerror, eventmask;
|
|
/* buffers */
|
|
char *inbuf,*outbuf;
|
|
unsigned ibuf_size,ibuf_head,ibuf_tail;
|
|
unsigned obuf_size,obuf_head,obuf_tail;
|
|
/* notifications */
|
|
int wnd, n_read, n_write;
|
|
};
|
|
|
|
extern void COMM_Init(void);
|
|
|
|
#endif /* __WINE_COMM_H */
|