diff options
| author | Louis Burda <quent.burda@gmail.com> | 2022-12-27 02:19:10 +0100 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2022-12-27 02:19:10 +0100 |
| commit | 8069562a2f7b530cd190cf06e0d88f1350d8d41d (patch) | |
| tree | 8ced6a9073e9216fce79fb7feb144690aca35814 /src/keymap.h | |
| parent | 878eb23b8394109aeb32cd505f79b96c74ec97f6 (diff) | |
| download | sxkbd-8069562a2f7b530cd190cf06e0d88f1350d8d41d.tar.gz sxkbd-8069562a2f7b530cd190cf06e0d88f1350d8d41d.zip | |
Implement more keysym functions
Diffstat (limited to 'src/keymap.h')
| -rw-r--r-- | src/keymap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keymap.h b/src/keymap.h index 7f78e8b..c816e38 100644 --- a/src/keymap.h +++ b/src/keymap.h @@ -6,8 +6,8 @@ #include <stdint.h> -void process_user_keypress_new(uint8_t sym, uint x, uint y); -void process_user_keyrelease_new(uint8_t sym, uint x, uint y); +void process_user_keypress(uint8_t sym, uint x, uint y); +void process_user_keyrelease(uint8_t sym, uint x, uint y); extern const uint32_t keymap_layers_de[][KEY_ROWS][KEY_COLS]; extern const uint32_t keymap_layers_de_count; |
