Release 950319
[wine] / include / accel.h
1 /*
2  * structure definitions for ACCELERATORS
3  *
4  * Copyright  Martin Ayotte, 1994
5  *
6  */
7
8 typedef struct {
9         WORD            wEvent;
10         WORD            wIDval;
11         BYTE            type;
12         } ACCELENTRY, *LPACCELENTRY;
13
14 typedef struct {
15         WORD            wCount;
16         ACCELENTRY      tbl[1];
17         } ACCELHEADER, *LPACCELHEADER;
18
19 #define VIRTKEY_ACCEL   0x01
20 #define SHIFT_ACCEL     0x04
21 #define CONTROL_ACCEL   0x08
22 #define ALT_ACCEL       0x10
23 #define SYSTEM_ACCEL    0x80