summaryrefslogtreecommitdiff
path: root/include/swaylock/seat.h
diff options
context:
space:
mode:
authoremersion <[email protected]>2019-01-17 10:26:42 +0100
committeremersion <[email protected]>2019-01-17 10:26:42 +0100
commitb29d19bf0dc405ec85c517e02298e6dffabfaeb5 (patch)
treea1901e641a8bc1f6c2ffdb60860934df5375c517 /include/swaylock/seat.h
parent70637b40fe98bda420e279e2e059fc93a9f538d6 (diff)
Remove swaylock headers
Diffstat (limited to 'include/swaylock/seat.h')
-rw-r--r--include/swaylock/seat.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/include/swaylock/seat.h b/include/swaylock/seat.h
deleted file mode 100644
index c79afcd0..00000000
--- a/include/swaylock/seat.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef _SWAYLOCK_SEAT_H
-#define _SWAYLOCK_SEAT_H
-#include <xkbcommon/xkbcommon.h>
-
-struct swaylock_xkb {
- bool caps_lock;
- bool control;
- struct xkb_state *state;
- struct xkb_context *context;
- struct xkb_keymap *keymap;
-};
-
-struct swaylock_seat {
- struct swaylock_state *state;
- struct wl_pointer *pointer;
- struct wl_keyboard *keyboard;
-};
-
-extern const struct wl_seat_listener seat_listener;
-
-#endif