aboutsummaryrefslogtreecommitdiff
path: root/include/wlr
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-02-01 12:08:35 +0100
committeremersion <contact@emersion.fr>2018-02-01 12:08:35 +0100
commit8eed857292cd5b473a07920b1a5698f1e641da22 (patch)
tree023e06b9198c71bc748d0efb4f2537d26c3fa094 /include/wlr
parent429f06d3f16c0401bb8a4acfbfc239b2745c9496 (diff)
output: add destroy signal for wlr_output_cursor
Diffstat (limited to 'include/wlr')
-rw-r--r--include/wlr/types/wlr_output.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_output.h b/include/wlr/types/wlr_output.h
index 55431ab1..9df2001e 100644
--- a/include/wlr/types/wlr_output.h
+++ b/include/wlr/types/wlr_output.h
@@ -29,6 +29,10 @@ struct wlr_output_cursor {
struct wlr_surface *surface;
struct wl_listener surface_commit;
struct wl_listener surface_destroy;
+
+ struct {
+ struct wl_signal destroy;
+ } events;
};
struct wlr_output_impl;