add "key" argument to SendKey

This commit is contained in:
elviosak 2026-04-20 17:25:42 -03:00
parent b5780aceb1
commit d058f89cb8
4 changed files with 145 additions and 34 deletions

View file

@ -45,6 +45,7 @@ bool keybind_the_same(struct keybind *a, struct keybind *b);
bool keybind_contains_keycode(struct keybind *keybind, xkb_keycode_t keycode);
bool keybind_contains_keysym(struct keybind *keybind, xkb_keysym_t keysym);
bool keybind_contains_any_keysym(struct keybind *keybind, const xkb_keysym_t *syms, int nr_syms);
void keybind_update_keycodes(void);
#endif /* LABWC_KEYBIND_H */