diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-08-27 08:16:49 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-27 08:16:49 -0400 |
commit | 792f98c2f0f7685fa47fc4b91127405e5a35e0d4 (patch) | |
tree | 83942690a67794aae05769c51b7fab332c50074b /include/wlr/backend | |
parent | c6955fa89c36571bbddc87a7acd589e6cb0fe0a3 (diff) | |
parent | 20db29779e0ba0bc43fe1d1935e7e6ffc8390d11 (diff) |
Merge pull request #1200 from alexbakker/destroy-signal
Add destroy signals to types that are destroyed by wl_display_destroy
Diffstat (limited to 'include/wlr/backend')
-rw-r--r-- | include/wlr/backend/session.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/wlr/backend/session.h b/include/wlr/backend/session.h index 1cf41939..7b26f34c 100644 --- a/include/wlr/backend/session.h +++ b/include/wlr/backend/session.h @@ -39,6 +39,10 @@ struct wlr_session { struct wl_list devices; struct wl_listener display_destroy; + + struct { + struct wl_signal destroy; + } events; }; /* |