summaryrefslogtreecommitdiffstats
path: root/include/sway/output.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/output.h')
-rw-r--r--include/sway/output.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/sway/output.h b/include/sway/output.h
index 769d44d0..44d009d1 100644
--- a/include/sway/output.h
+++ b/include/sway/output.h
@@ -4,6 +4,7 @@
4#include <wayland-server.h> 4#include <wayland-server.h>
5#include <wlr/types/wlr_box.h> 5#include <wlr/types/wlr_box.h>
6#include <wlr/types/wlr_output.h> 6#include <wlr/types/wlr_output.h>
7#include <unistd.h>
7 8
8struct sway_server; 9struct sway_server;
9struct sway_container; 10struct sway_container;
@@ -18,7 +19,10 @@ struct sway_output {
18 struct wlr_box usable_area; 19 struct wlr_box usable_area;
19 20
20 struct wl_listener frame; 21 struct wl_listener frame;
21 struct wl_listener output_destroy; 22 struct wl_listener destroy;
23 struct wl_listener mode;
24
25 pid_t bg_pid;
22}; 26};
23 27
24#endif 28#endif