aboutsummaryrefslogtreecommitdiffstats
path: root/include/swaylock/seat.h
diff options
context:
space:
mode:
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 @@
1#ifndef _SWAYLOCK_SEAT_H
2#define _SWAYLOCK_SEAT_H
3#include <xkbcommon/xkbcommon.h>
4
5struct swaylock_xkb {
6 bool caps_lock;
7 bool control;
8 struct xkb_state *state;
9 struct xkb_context *context;
10 struct xkb_keymap *keymap;
11};
12
13struct swaylock_seat {
14 struct swaylock_state *state;
15 struct wl_pointer *pointer;
16 struct wl_keyboard *keyboard;
17};
18
19extern const struct wl_seat_listener seat_listener;
20
21#endif