diff options
Diffstat (limited to 'commands.h')
-rw-r--r-- | commands.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -27,15 +27,14 @@ typedef void* arg_t; typedef bool (*command_f)(arg_t); typedef struct { - bool ctrl; + unsigned int mask; KeySym ksym; command_f cmd; arg_t arg; } keymap_t; typedef struct { - bool ctrl; - bool shift; + unsigned int mask; unsigned int button; command_f cmd; arg_t arg; |