summaryrefslogtreecommitdiff
path: root/quantum/template/template.h
diff options
context:
space:
mode:
authorNoah Andrews <NoahAndrews@users.noreply.github.com>2016-03-29 20:03:22 -0400
committerNoah Andrews <NoahAndrews@users.noreply.github.com>2016-03-29 20:03:22 -0400
commite28334017c94c6928dd7e82436cec171f0243747 (patch)
treed2b2ecb96aff656094b2113f83632e3131000a75 /quantum/template/template.h
parentccf848917b7e931327f6c4a469877e9d8ef238ea (diff)
parent26513b497b8bae5160389c0beac2d45cbb29c50f (diff)
Merge remote-tracking branch 'jackhumbert/master' into make-keymap-names-consistent
Diffstat (limited to 'quantum/template/template.h')
-rw-r--r--quantum/template/template.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/quantum/template/template.h b/quantum/template/template.h
index d4d78e4c91..b1c34d3cbe 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