Release 970112
[wine/multimedia.git] / include / accel.h
blob7c3ad95c8c4111e4f84526640a980d4bbc9bba18
1 /*
2 * structure definitions for ACCELERATORS
4 * Copyright Martin Ayotte, 1994
6 */
8 #ifndef __WINE_ACCEL_H
9 #define __WINE_ACCEL_H
11 #include "windows.h"
13 typedef struct {
14 WORD wEvent;
15 WORD wIDval;
16 BYTE type;
17 } ACCELENTRY, *LPACCELENTRY;
19 typedef struct {
20 WORD wCount;
21 ACCELENTRY tbl[1];
22 } ACCELHEADER, *LPACCELHEADER;
24 #define VIRTKEY_ACCEL 0x01
25 #define SHIFT_ACCEL 0x04
26 #define CONTROL_ACCEL 0x08
27 #define ALT_ACCEL 0x10
28 #define SYSTEM_ACCEL 0x80
30 #endif /* __WINE_ACCEL_H */