blob: baa10862398f70398784b8c7629a3b8220d5a014 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#define BSIZE 4000
#define MOUSE 0
#define KBD 1
#define HOST 2
#define HOST_BLOCKED 1
#define KBD_BLOCKED 2
typedef struct IOEvent {
short key;
short size;
uchar data[BSIZE];
} IOEvent;
|