output: add destroy signal for wlr_output_cursor

This commit is contained in:
emersion 2018-02-01 12:08:35 +01:00
parent 429f06d3f1
commit 8eed857292
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48
2 changed files with 6 additions and 0 deletions

View file

@ -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;