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