Проект разнесён по файлам

This commit is contained in:
2025-11-16 17:02:39 +03:00
parent b11a56ad06
commit 1f700295ff
8 changed files with 509 additions and 323 deletions

11
wayland/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