#pragma once #include "utils.h" struct wl_state_s { wl_display_t display; wl_compositor_t compositor; xdg_wm_base_t wm_base; wl_surface_t surface; }; bool wayc_wl_state_init(struct wl_state_s *state); void wayc_wl_state_deinit(struct wl_state_s *state);