aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2017-09-29 23:18:12 +0200
committeremersion <contact@emersion.fr>2017-09-29 23:18:12 +0200
commit4ccb83bf33bbf531eef7fbd20e80146562fcae64 (patch)
tree8cee3334ac34492eb184d31d766893d98778be89 /include
parent5002d968f303f6e678cbe87cc034b14d8f8b3ce8 (diff)
xwayland: add wlr_xwayland_surface_close
Diffstat (limited to 'include')
-rw-r--r--include/wlr/xwayland.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/wlr/xwayland.h b/include/wlr/xwayland.h
index bb85017e..43133567 100644
--- a/include/wlr/xwayland.h
+++ b/include/wlr/xwayland.h
@@ -50,6 +50,9 @@ struct wlr_xwayland_surface {
xcb_atom_t *window_type;
size_t window_type_len;
+ xcb_atom_t *protocols;
+ size_t protocols_len;
+
struct {
struct wl_signal destroy;
@@ -79,5 +82,7 @@ void wlr_xwayland_surface_activate(struct wlr_xwayland *wlr_xwayland,
struct wlr_xwayland_surface *surface);
void wlr_xwayland_surface_configure(struct wlr_xwayland *wlr_xwayland,
struct wlr_xwayland_surface *surface);
+void wlr_xwayland_surface_close(struct wlr_xwayland *wlr_xwayland,
+ struct wlr_xwayland_surface *surface);
#endif