diff options
author | Stephan Bösebeck <sb@caluga.de> | 2016-04-06 22:52:49 +0200 |
---|---|---|
committer | Stephan Bösebeck <sb@caluga.de> | 2016-04-06 22:52:49 +0200 |
commit | 0befb25739ebcec64a3300d60d7c108f6916dee7 (patch) | |
tree | 222fd634cf50c584ceb7925bb8e61a9f266830de /tmk_core/common/action.h | |
parent | 75c24499f3fcb4ad2156875fb529f87a5d99fe9f (diff) | |
parent | 153a6fb0d3e9b54c4d6241c44ffdb9ce8a65de7f (diff) | |
download | qmk_firmware-0befb25739ebcec64a3300d60d7c108f6916dee7.tar.gz |
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware
Diffstat (limited to 'tmk_core/common/action.h')
-rw-r--r-- | tmk_core/common/action.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tmk_core/common/action.h b/tmk_core/common/action.h index 9f528af4b..44ec3047b 100644 --- a/tmk_core/common/action.h +++ b/tmk_core/common/action.h @@ -62,6 +62,10 @@ void action_function(keyrecord_t *record, uint8_t id, uint8_t opt); void process_action_kb(keyrecord_t *record); /* Utilities for actions. */ +#if !defined(NO_ACTION_LAYER) && defined(PREVENT_STUCK_MODIFIERS) +extern bool disable_action_cache; +#endif +void process_action_nocache(keyrecord_t *record); void process_action(keyrecord_t *record); void register_code(uint8_t code); void unregister_code(uint8_t code); |