aboutsummaryrefslogtreecommitdiffstats
path: root/include/output.h
diff options
context:
space:
mode:
authorLibravatar S. Christoffer Eliesen <christoffer@eliesen.no>2015-10-25 01:20:00 +0200
committerLibravatar S. Christoffer Eliesen <christoffer@eliesen.no>2015-10-25 13:14:23 +0100
commitc6bb23b7ddd6393c3d4a621bd2c610922a933867 (patch)
tree10ce75aaa4e756b151d75ff564c141b60d9d72be /include/output.h
parentUpdate set_origin to match wlc changes (diff)
downloadsway-c6bb23b7ddd6393c3d4a621bd2c610922a933867.tar.gz
sway-c6bb23b7ddd6393c3d4a621bd2c610922a933867.tar.zst
sway-c6bb23b7ddd6393c3d4a621bd2c610922a933867.zip
sway/output: Create, move code from handlers.c here.
Diffstat (limited to 'include/output.h')
-rw-r--r--include/output.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/output.h b/include/output.h
new file mode 100644
index 00000000..10ff0596
--- /dev/null
+++ b/include/output.h
@@ -0,0 +1,10 @@
1#ifndef _SWAY_OUTPUT_H
2#define _SWAY_OUTPUT_H
3
4#include "container.h"
5#include "focus.h"
6
7swayc_t *output_by_name(const char* name);
8swayc_t *swayc_adjacent_output(swayc_t *output, enum movement_direction dir);
9
10#endif