Реструктуризация проекта

This commit is contained in:
2025-11-16 17:52:09 +03:00
parent 1f700295ff
commit eeb632ed0e
9 changed files with 43 additions and 40 deletions

11
wayland/include/input.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef WAYLAND_INPUT_H
#define WAYLAND_INPUT_H
#include <wayland-client.h>
/* Called by registry when a wl_seat is bound */
void input_register_seat(struct wl_seat *seat);
/* Perform any input-related cleanup (destroy keyboard, xkb state) */
void input_cleanup(void);
#endif