diff options
author | Drew DeVault <[email protected]> | 2017-11-19 17:04:28 -0500 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2017-11-19 17:04:28 -0500 |
commit | db4fb1c85c132e001fb1ae18f03f7585def1ae19 (patch) | |
tree | 91da84c9476e6ec34c65f3f8923961fd893fa721 /include/sway/output.h | |
parent | 733993a651c71f7e2198d505960d6bbd31e0e107 (diff) |
Add outputs to the tree
Diffstat (limited to 'include/sway/output.h')
-rw-r--r-- | include/sway/output.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sway/output.h b/include/sway/output.h index ffc6708d..e2f81bcb 100644 --- a/include/sway/output.h +++ b/include/sway/output.h @@ -5,9 +5,11 @@ #include <wlr/types/wlr_output.h> struct sway_server; +struct sway_container; struct sway_output { struct wlr_output *wlr_output; + struct sway_container *swayc; struct sway_server *server; struct timespec last_frame; struct wl_listener frame; |