diff options
Diffstat (limited to 'quantum/template/template.h')
-rw-r--r-- | quantum/template/template.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/quantum/template/template.h b/quantum/template/template.h index d4d78e4c9..b1c34d3cb 100644 --- a/quantum/template/template.h +++ b/quantum/template/template.h @@ -12,14 +12,16 @@ // The second converts the arguments into a two-dimensional array #define KEYMAP( \ k00, k01, k02, \ - k10, k11, \ + k10, k11 \ ) \ { \ { k00, k01, k02 }, \ { k10, KC_NO, k11 }, \ -} +} -void * matrix_init_user(void); -void * matrix_scan_user(void); +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 |