summaryrefslogtreecommitdiffstats
path: root/quantum/template/template.h
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2016-03-28 17:55:19 +0200
committerJack Humbert <jack.humb@gmail.com>2016-03-28 17:55:19 +0200
commitfd9e5d151028e428249e4c42921e4bf2597d5f0d (patch)
treea1a95c9278260e31eaba0da21219b0c24e9087a4 /quantum/template/template.h
parent5e2c497d9a3aeb26e1ac9f3d9840fa213e67a339 (diff)
parentbcebb3447c155056819d42668943110ab0868517 (diff)
downloadqmk_firmware-fd9e5d151028e428249e4c42921e4bf2597d5f0d.tar.gz
qmk_firmware-fd9e5d151028e428249e4c42921e4bf2597d5f0d.tar.xz
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.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/quantum/template/template.h b/quantum/template/template.h
index ba91abac3..b1c34d3cb 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