diff options
author | Christopher Browne <cbbrowne@ca.afilias.info> | 2016-04-13 12:02:51 -0400 |
---|---|---|
committer | Christopher Browne <cbbrowne@ca.afilias.info> | 2016-04-13 12:02:51 -0400 |
commit | 6ec6b613536b7138ee0c87002b10da8fe0c0117d (patch) | |
tree | 9bd7d842cb99a84ab6ae96b3437c39e41f9608d9 /tmk_core/common/action.h | |
parent | 5bbcc484a8e14ffb13354df4efdd460ebe7200e1 (diff) | |
parent | a0194d7e5ff2f3d242a5c6508abf81b4ddf67a3e (diff) |
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 9f528af4b9..44ec3047ba 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); |