Файл для обработки ввода

This commit is contained in:
2025-11-17 13:41:46 +03:00
parent bc5bf92fee
commit b8ebf31762
8 changed files with 69 additions and 33 deletions

View File

@@ -0,0 +1,10 @@
#ifndef INPUT_HANDLE_H
#define INPUT_HANDLE_H
#include <xkbcommon/xkbcommon.h>
#include "window.h"
#include "input.h"
void keyboard_key_handle(xkb_keycode_t kc, xkb_keysym_t ks, enum keyboard_key_state state, struct wayland_window* window);
#endif