diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-01-17 08:13:19 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-17 08:13:19 -0500 |
commit | 5a0c4234b8f0ef5ad3d17430e876e29242b934e2 (patch) | |
tree | 0d9dd8ed027d59853870bb205997243f73a626c7 /include/swaylock/seat.h | |
parent | 60a16bbf416cf17b62436951d3309b9bf87f151f (diff) | |
parent | f951c2357fc4c1f25c7af34958e37cd65a6979d2 (diff) |
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.h | 21 |
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 |