aboutsummaryrefslogtreecommitdiff
path: root/common/action.h
diff options
context:
space:
mode:
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 9aa1d78e9..327a009ef 100644
--- a/common/action.h
+++ b/common/action.h
@@ -19,7 +19,7 @@ void clear_keyboard(void);
19void clear_keyboard_but_mods(void); 19void clear_keyboard_but_mods(void);
20bool sending_anykey(void); 20bool sending_anykey(void);
21void layer_switch(uint8_t new_layer); 21void layer_switch(uint8_t new_layer);
22bool is_tap_key(keyevent_t event); 22bool is_tap_key(key_t key);
23 23
24 24
25 25
@@ -197,11 +197,9 @@ enum stroke_cmd {
197 STROKE_ALLUP, /* release all keys in reverse order */ 197 STROKE_ALLUP, /* release all keys in reverse order */
198}; 198};
199 199
200// TODO: not needed?
201typedef struct { 200typedef struct {
202 keyevent_t event; 201 keyevent_t event;
203 action_t action; 202 uint8_t tap_count;
204 uint8_t mods;
205} keyrecord_t; 203} keyrecord_t;
206 204
207/* action function */ 205/* action function */