summaryrefslogtreecommitdiff
path: root/ui.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui.h')
-rw-r--r--ui.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/ui.h b/ui.h
index 9a80a35..2a6afc5 100644
--- a/ui.h
+++ b/ui.h
@@ -26,8 +26,15 @@ typedef enum {
UIK_UNKNOWN
} UiKey;
+typedef enum {
+ UIM_ALT,
+ UIM_SHIFT,
+ UIM_CTRL,
+} UiModMask;
+
typedef struct {
UiKey key;
+ UiModMask mod;
char str[16];
int strn;
} UiKeyEvent;