2001-11-13 Michael Meeks <michael@ximian.com>
[platform/core/uifw/at-spi2-atk.git] / libspi / keymasks.h
1 #ifndef _SPI_KEYMASKS_H_
2 #define _SPI_KEYMASKS_H_
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif /* __cplusplus */
7
8 #include <X11/Xlib.h>
9
10 typedef unsigned long KeyMaskType;
11
12 #define KEYMASK_ALT       Mod1Mask
13 #define KEYMASK_MOD1      Mod1Mask
14 #define KEYMASK_MOD2      Mod2Mask
15 #define KEYMASK_MOD3      Mod3Mask
16 #define KEYMASK_CONTROL   ControlMask
17 #define KEYMASK_SHIFT     ShiftMask
18 #define KEYMASK_SHIFTLOCK LockMask
19 #define KEYMASK_UNMODIFIED 0
20
21 #ifdef __cplusplus
22 }
23 #endif /* __cplusplus */
24
25
26 #endif