diff options
| author | Fabrice <fabrice@schaub-dev.xyz> | 2026-02-10 09:04:15 +0100 |
|---|---|---|
| committer | Fabrice <fabrice@schaub-dev.xyz> | 2026-02-10 09:04:15 +0100 |
| commit | 86c09e193ed66420da48a7fd62678286b89dace2 (patch) | |
| tree | 5d1add9b7fec1f4783407f21ec7ed9ff149e6220 /src/wlstate.h | |
| parent | 888ce66e186e2892bc30afb5bb97918d504e0ba1 (diff) | |
working on event loop
Diffstat (limited to 'src/wlstate.h')
| -rw-r--r-- | src/wlstate.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wlstate.h b/src/wlstate.h index 9d962c2..7bb3499 100644 --- a/src/wlstate.h +++ b/src/wlstate.h @@ -2,7 +2,7 @@ #include "utils.h" -struct wl_state_s { +struct wlstate_s { wl_display_t display; wl_registry_t registry; wl_compositor_t compositor; @@ -10,6 +10,6 @@ struct wl_state_s { u32 eventfd; }; -bool wayc_wl_state_init(struct wl_state_s *state); -void wayc_wl_state_deinit(struct wl_state_s *state); -void wayc_wl_state_update(struct wl_state_s *state); +bool wayc_wlstate_init(struct wlstate_s *state); +void wayc_wlstate_deinit(struct wlstate_s *state); +void wayc_wlstate_update(struct wlstate_s *state); |
