diff options
author | emersion <contact@emersion.fr> | 2017-10-29 11:20:11 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2017-10-31 12:30:56 +0100 |
commit | 2e2d63a16482135bb61db6a24cd09cd04c068c22 (patch) | |
tree | 387c49103f029b30e7ad24064cef1c48425f3e10 /include/wlr | |
parent | c45f2eef0e0fb805d88b54b65db23bb8a49ebea6 (diff) |
Manage wlr_output_cursor from wlr_cursor
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_output_layout.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_output_layout.h b/include/wlr/types/wlr_output_layout.h index ea8dbcd2..a99debf6 100644 --- a/include/wlr/types/wlr_output_layout.h +++ b/include/wlr/types/wlr_output_layout.h @@ -12,6 +12,7 @@ struct wlr_output_layout { struct wlr_output_layout_state *state; struct { + struct wl_signal add; struct wl_signal change; struct wl_signal destroy; } events; @@ -24,6 +25,10 @@ struct wlr_output_layout_output { int x, y; struct wl_list link; struct wlr_output_layout_output_state *state; + + struct { + struct wl_signal destroy; + } events; }; struct wlr_output_layout *wlr_output_layout_create(); |