diff options
author | tmk <nobody@nowhere> | 2013-02-01 14:48:11 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2013-02-01 14:48:11 +0900 |
commit | 1d7962ba8a20323dc13cc913381608e117afaeb4 (patch) | |
tree | 7f345a164f79364a3d7178be8b828d648b3e6c8a /common/keymap.c | |
parent | d95463f2e0369dc0e28497bb923b3012fb09e900 (diff) |
Add user defined function to action.
Diffstat (limited to 'common/keymap.c')
-rw-r--r-- | common/keymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/keymap.c b/common/keymap.c index 4151213089..40d20f6849 100644 --- a/common/keymap.c +++ b/common/keymap.c @@ -68,6 +68,6 @@ action_t keymap_get_action(uint8_t layer, uint8_t row, uint8_t col) #endif __attribute__ ((weak)) -void action_call_function(keyevent_t event, uint8_t id) +void keymap_call_function(keyrecord_t *event, uint8_t id) { } |