diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-04-25 19:19:21 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-04-25 19:19:21 -0400 |
commit | 5ca9d612f4fa1977bec5a8c1e79c33d2ce4df365 (patch) | |
tree | ee315a770c1f490ed7c760b3f2c0916482babe70 /include/backend | |
parent | de01e654cef2c72dce3adb580e20fe2cbc8aeb16 (diff) |
Flesh out wayland backend registry
Diffstat (limited to 'include/backend')
-rw-r--r-- | include/backend/wayland.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/backend/wayland.h b/include/backend/wayland.h index 368b0724..94aa0962 100644 --- a/include/backend/wayland.h +++ b/include/backend/wayland.h @@ -11,8 +11,8 @@ struct wlr_wl_backend { struct wl_display *local_display; /* remote state */ struct wl_display *remote_display; - struct wl_registry *remote_registry; - struct wl_compositor *remote_compositor; + struct wl_registry *registry; + struct wl_compositor *compositor; struct wl_shell *shell; struct wl_shm *shm; struct wlr_wl_seat *seat; @@ -21,4 +21,7 @@ struct wlr_wl_backend { void wlr_wlb_registry_poll(struct wlr_wl_backend *backend); +extern const struct wl_seat_listener seat_listener; +extern const struct wl_output_listener output_listener; + #endif |