summaryrefslogtreecommitdiff
path: root/src/ui/keys.h
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-03-03 11:03:47 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-03-03 11:58:51 +0200
commite0f586866ebafa296bda849b392d09fc2e14d487 (patch)
tree5536cf6f56f9c71db6b24cc185618387c35bdf4d /src/ui/keys.h
parent76f9ab985c135c6f691276b4edd0c340a6bc2de1 (diff)
CapsLock as a modifier key; adding a modifier mapping table
IssueID #87
Diffstat (limited to 'src/ui/keys.h')
-rw-r--r--src/ui/keys.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ui/keys.h b/src/ui/keys.h
index f6f0b465..90e33b7c 100644
--- a/src/ui/keys.h
+++ b/src/ui/keys.h
@@ -90,3 +90,7 @@ const iBinding *findCommand_Keys (const char *command);
90 90
91iBool processEvent_Keys (const SDL_Event *); 91iBool processEvent_Keys (const SDL_Event *);
92const iPtrArray *list_Keys (void); 92const iPtrArray *list_Keys (void);
93
94int mapMods_Keys (int modFlags);
95int modState_Keys (void); /* current modifier key state */
96void setCapsLockDown_Keys(iBool isDown);