diff options
author | emersion <contact@emersion.fr> | 2017-12-07 01:12:04 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2017-12-07 01:12:04 +0100 |
commit | 0e066f0d7634b051981fbfb2fb75b2f8a4fe8594 (patch) | |
tree | b8c38fe2bbccbbe0a59969a0025a09aa258064ac /include | |
parent | cbf5763c226661765fb87dcf30d60b04999c126b (diff) |
Listen to display destroy in output
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/types/wlr_output.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_output.h b/include/wlr/types/wlr_output.h index 42c46233..04662820 100644 --- a/include/wlr/types/wlr_output.h +++ b/include/wlr/types/wlr_output.h @@ -74,6 +74,8 @@ struct wlr_output { // the output position in layout space reported to clients int32_t lx, ly; + struct wl_listener display_destroy; + void *data; }; |