diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-03-28 11:55:19 -0400 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2016-03-28 11:55:19 -0400 |
commit | fd9e5d151028e428249e4c42921e4bf2597d5f0d (patch) | |
tree | a1a95c9278260e31eaba0da21219b0c24e9087a4 /quantum/template/template.h | |
parent | 5e2c497d9a3aeb26e1ac9f3d9840fa213e67a339 (diff) | |
parent | bcebb3447c155056819d42668943110ab0868517 (diff) |
Merge pull request #214 from cdlm/action-hook
Add per-event user hook function
Diffstat (limited to 'quantum/template/template.h')
-rw-r--r-- | quantum/template/template.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/quantum/template/template.h b/quantum/template/template.h index ba91abac3e..b1c34d3cbe 100644 --- a/quantum/template/template.h +++ b/quantum/template/template.h @@ -17,10 +17,11 @@ { \ { k00, k01, k02 }, \ { k10, KC_NO, k11 }, \ -} +} void matrix_init_user(void); void matrix_scan_user(void); +void process_action_user(keyrecord_t *record); void led_set_user(uint8_t usb_led); -#endif
\ No newline at end of file +#endif |