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