1
0
Fork 0

Add per-event user hook function to QMK

This commit is contained in:
Damien Pollet 2016-03-27 17:58:26 +02:00
parent 80eefb09ac
commit ef21a855e6
2 changed files with 8 additions and 0 deletions

View file

@ -58,6 +58,9 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt);
/* user defined special function */
void action_function(keyrecord_t *record, uint8_t id, uint8_t opt);
/* user-defined (pre)processing of each key event */
void process_action_user(keyrecord_t *record);
/* Utilities for actions. */
void process_action(keyrecord_t *record);
void register_code(uint8_t code);