Превосходное состояние проекта

This commit is contained in:
2025-11-17 01:31:00 +03:00
parent 0d3efeda49
commit e0ac79bae1
8 changed files with 336 additions and 271 deletions

View File

@@ -3,16 +3,16 @@
#include <stdint.h>
/* Initialize shared Wayland connection and prepare global data */
/* Инициализация общего соединения Wayland и подготовка глобальных данных */
int32_t init_wayland(void);
/* Spawn a new window thread; returns slot index or negative on failure */
/* Создать поток для окна; вернуть индекс слота или отрицательное при ошибке */
int32_t run_window(void);
/* Block until all window threads have exited */
/* Блокировать до завершения всех оконных потоков */
void wait_for_windows(void);
/* Tear down window threads, input, and the shared Wayland connection */
/* Остановить оконные потоки, очистить input и закрыть соединение Wayland */
void destroy_wayland(void);
#endif