summaryrefslogtreecommitdiffstats
path: root/include/swaylock/seat.h
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2019-01-17 08:13:19 -0500
committerLibravatar GitHub <noreply@github.com>2019-01-17 08:13:19 -0500
commit5a0c4234b8f0ef5ad3d17430e876e29242b934e2 (patch)
tree0d9dd8ed027d59853870bb205997243f73a626c7 /include/swaylock/seat.h
parentMerge pull request #3448 from emersion/swaybg-xdg-output (diff)
parentRemove unicode.c (diff)
downloadsway-5a0c4234b8f0ef5ad3d17430e876e29242b934e2.tar.gz
sway-5a0c4234b8f0ef5ad3d17430e876e29242b934e2.tar.zst
sway-5a0c4234b8f0ef5ad3d17430e876e29242b934e2.zip
Merge pull request #3447 from emersion/remove-swaylock-includes
Remove swaylock headers and unicode.c
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