summaryrefslogtreecommitdiff
path: root/common/action.h
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2013-01-27 02:42:48 +0900
committertmk <nobody@nowhere>2013-01-27 02:42:48 +0900
commitef873791bdbff5cc6971705544e120c69ca94212 (patch)
tree653a1959260642ea6cb31bf9c92aaa75392b6c39 /common/action.h
parentd8dddf9f25181e29e3fb82250833a00a11921452 (diff)
New tapping logic.
Diffstat (limited to 'common/action.h')
-rw-r--r--common/action.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/common/action.h b/common/action.h
index 9aa1d78e94..327a009ef9 100644
--- a/common/action.h
+++ b/common/action.h
@@ -19,7 +19,7 @@ void clear_keyboard(void);
void clear_keyboard_but_mods(void);
bool sending_anykey(void);
void layer_switch(uint8_t new_layer);
-bool is_tap_key(keyevent_t event);
+bool is_tap_key(key_t key);
@@ -197,11 +197,9 @@ enum stroke_cmd {
STROKE_ALLUP, /* release all keys in reverse order */
};
-// TODO: not needed?
typedef struct {
keyevent_t event;
- action_t action;
- uint8_t mods;
+ uint8_t tap_count;
} keyrecord_t;
/* action function */