aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/decoration.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/decoration.h')
-rw-r--r--include/sway/decoration.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/sway/decoration.h b/include/sway/decoration.h
index c77c04c7..7916746e 100644
--- a/include/sway/decoration.h
+++ b/include/sway/decoration.h
@@ -5,9 +5,13 @@
5 5
6struct sway_server_decoration { 6struct sway_server_decoration {
7 struct wlr_server_decoration *wlr_server_decoration; 7 struct wlr_server_decoration *wlr_server_decoration;
8 struct wl_list link;
8 9
9 struct wl_listener destroy; 10 struct wl_listener destroy;
10 struct wl_listener mode; 11 struct wl_listener mode;
11}; 12};
12 13
14struct sway_server_decoration *decoration_from_surface(
15 struct wlr_surface *surface);
16
13#endif 17#endif