aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-16 08:33:22 -0500
committerLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-16 08:33:22 -0500
commitd3d36047605e57e81d7452173a913a0c04cbcfc1 (patch)
tree792ea6e2bcd16cdff1db7b90bab2668bfa569e51
parentinput and seat command docs (diff)
downloadsway-d3d36047605e57e81d7452173a913a0c04cbcfc1.tar.gz
sway-d3d36047605e57e81d7452173a913a0c04cbcfc1.tar.zst
sway-d3d36047605e57e81d7452173a913a0c04cbcfc1.zip
fix header includes
-rw-r--r--include/sway/input/cursor.h4
-rw-r--r--include/sway/input/input-manager.h4
-rw-r--r--include/sway/input/keyboard.h5
-rw-r--r--include/sway/input/seat.h4
4 files changed, 11 insertions, 6 deletions
diff --git a/include/sway/input/cursor.h b/include/sway/input/cursor.h
index cc529de6..2f70cf4b 100644
--- a/include/sway/input/cursor.h
+++ b/include/sway/input/cursor.h
@@ -1,5 +1,5 @@
1#ifndef _SWAY_CURSOR_H 1#ifndef _SWAY_INPUT_CURSOR_H
2#define _SWAY_CURSOR_H 2#define _SWAY_INPUT_CURSOR_H
3 3
4#include "sway/input/seat.h" 4#include "sway/input/seat.h"
5 5
diff --git a/include/sway/input/input-manager.h b/include/sway/input/input-manager.h
index cdcffab6..53064eed 100644
--- a/include/sway/input/input-manager.h
+++ b/include/sway/input/input-manager.h
@@ -1,5 +1,5 @@
1#ifndef _SWAY_INPUT_MANAGER_H 1#ifndef _SWAY_INPUT_INPUT_MANAGER_H
2#define _SWAY_INPUT_MANAGER_H 2#define _SWAY_INPUT_INPUT_MANAGER_H
3#include <libinput.h> 3#include <libinput.h>
4#include "sway/server.h" 4#include "sway/server.h"
5#include "sway/config.h" 5#include "sway/config.h"
diff --git a/include/sway/input/keyboard.h b/include/sway/input/keyboard.h
index 89cde3fa..0b0c1549 100644
--- a/include/sway/input/keyboard.h
+++ b/include/sway/input/keyboard.h
@@ -1,3 +1,6 @@
1#ifndef _SWAY_INPUT_KEYBOARD_H
2#define _SWAY_INPUT_KEYBOARD_H
3
1#include "sway/input/seat.h" 4#include "sway/input/seat.h"
2 5
3struct sway_keyboard { 6struct sway_keyboard {
@@ -16,3 +19,5 @@ struct sway_keyboard *sway_keyboard_create(struct sway_seat *seat,
16void sway_keyboard_configure(struct sway_keyboard *keyboard); 19void sway_keyboard_configure(struct sway_keyboard *keyboard);
17 20
18void sway_keyboard_destroy(struct sway_keyboard *keyboard); 21void sway_keyboard_destroy(struct sway_keyboard *keyboard);
22
23#endif
diff --git a/include/sway/input/seat.h b/include/sway/input/seat.h
index db69f83e..d703f94c 100644
--- a/include/sway/input/seat.h
+++ b/include/sway/input/seat.h
@@ -1,5 +1,5 @@
1#ifndef _SWAY_SEAT_H 1#ifndef _SWAY_INPUT_SEAT_H
2#define _SWAY_SEAT_H 2#define _SWAY_INPUT_SEAT_H
3 3
4#include <wlr/types/wlr_seat.h> 4#include <wlr/types/wlr_seat.h>
5#include "sway/input/input-manager.h" 5#include "sway/input/input-manager.h"