diff options
author | Simon Ser <contact@emersion.fr> | 2022-10-18 13:02:47 +0200 |
---|---|---|
committer | Simon Zeni <simon@bl4ckb0ne.ca> | 2022-11-18 15:35:20 +0000 |
commit | d3b84463f8d6d483f446b3cdd18fcff031bc830c (patch) | |
tree | f58202caceb35f546a92d1bdaf119e4f0808e909 /include/wlr/xwayland | |
parent | 44c7e233ff7581c9735b03c2105d9803f9a8535f (diff) |
xwayland: add wlr_xwayland_shell_v1_destroy()
Diffstat (limited to 'include/wlr/xwayland')
-rw-r--r-- | include/wlr/xwayland/shell.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/wlr/xwayland/shell.h b/include/wlr/xwayland/shell.h index 893e5fda..91b7c716 100644 --- a/include/wlr/xwayland/shell.h +++ b/include/wlr/xwayland/shell.h @@ -27,6 +27,7 @@ struct wlr_xwayland_shell_v1 { // private state struct wl_client *client; + struct wl_list surfaces; // wlr_xwayland_surface_v1.link struct wl_listener display_destroy; struct wl_listener client_destroy; @@ -42,6 +43,7 @@ struct wlr_xwayland_surface_v1 { // private state struct wl_resource *resource; + struct wl_list link; struct wlr_xwayland_shell_v1 *shell; bool added; @@ -58,6 +60,11 @@ struct wlr_xwayland_shell_v1 *wlr_xwayland_shell_v1_create( struct wl_display *display, uint32_t version); /** + * Destroy the xwayland_shell_v1 global. + */ +void wlr_xwayland_shell_v1_destroy(struct wlr_xwayland_shell_v1 *shell); + +/** * Allow a client to bind to the xwayland_shell_v1 global. */ void wlr_xwayland_shell_v1_set_client(struct wlr_xwayland_shell_v1 *shell, |