]> git.friedersdorff.com Git - max/tmk_keyboard.git/blobdiff - tmk_core/common/hook.c
core: Update comments in keycode.h
[max/tmk_keyboard.git] / tmk_core / common / hook.c
index 4ed2403cf4e86410e68fc693c00453db3973fdc8..22be9a308a89de833b527582249bbadddec98b2a 100644 (file)
@@ -47,3 +47,8 @@ void hook_keyboard_leds_change(uint8_t led_status) {
 
 __attribute__((weak))
 void hook_bootmagic(void) {}
+
+__attribute__((weak))
+bool hook_process_action(keyrecord_t *record) {
+    return false;
+}