summaryrefslogtreecommitdiffstats
path: root/include/sway/server.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/server.h')
-rw-r--r--include/sway/server.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/sway/server.h b/include/sway/server.h
index bfdb7b8a..3fa72e84 100644
--- a/include/sway/server.h
+++ b/include/sway/server.h
@@ -31,6 +31,9 @@ struct sway_server {
31 struct wlr_xdg_shell_v6 *xdg_shell_v6; 31 struct wlr_xdg_shell_v6 *xdg_shell_v6;
32 struct wl_listener xdg_shell_v6_surface; 32 struct wl_listener xdg_shell_v6_surface;
33 33
34 struct wlr_xwayland *xwayland;
35 struct wl_listener xwayland_surface;
36
34 struct wlr_wl_shell *wl_shell; 37 struct wlr_wl_shell *wl_shell;
35 struct wl_listener wl_shell_surface; 38 struct wl_listener wl_shell_surface;
36}; 39};
@@ -45,6 +48,7 @@ void output_add_notify(struct wl_listener *listener, void *data);
45void output_remove_notify(struct wl_listener *listener, void *data); 48void output_remove_notify(struct wl_listener *listener, void *data);
46 49
47void handle_xdg_shell_v6_surface(struct wl_listener *listener, void *data); 50void handle_xdg_shell_v6_surface(struct wl_listener *listener, void *data);
51void handle_xwayland_surface(struct wl_listener *listener, void *data);
48void handle_wl_shell_surface(struct wl_listener *listener, void *data); 52void handle_wl_shell_surface(struct wl_listener *listener, void *data);
49 53
50#endif 54#endif