summaryrefslogtreecommitdiffstats
path: root/include/swaylock/seat.h
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2018-10-24 14:33:33 +0200
committerLibravatar GitHub <noreply@github.com>2018-10-24 14:33:33 +0200
commitf2082a3d4c80e96c1e8c75bf8ca442786efb2153 (patch)
tree913c25041f628e8afb2d7e1f0ab1c4a5f9a20ec5 /include/swaylock/seat.h
parentMerge pull request #2933 from Snaipe/xwayland-window-properties (diff)
parentAdd multiseat support to swaylock (diff)
downloadsway-f2082a3d4c80e96c1e8c75bf8ca442786efb2153.tar.gz
sway-f2082a3d4c80e96c1e8c75bf8ca442786efb2153.tar.zst
sway-f2082a3d4c80e96c1e8c75bf8ca442786efb2153.zip
Merge pull request #2961 from RyanDwyer/swaylock-multiseat
Add multiseat support to swaylock
Diffstat (limited to 'include/swaylock/seat.h')
-rw-r--r--include/swaylock/seat.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/swaylock/seat.h b/include/swaylock/seat.h
index 4bcf40c0..c79afcd0 100644
--- a/include/swaylock/seat.h
+++ b/include/swaylock/seat.h
@@ -10,6 +10,12 @@ struct swaylock_xkb {
10 struct xkb_keymap *keymap; 10 struct xkb_keymap *keymap;
11}; 11};
12 12
13struct swaylock_seat {
14 struct swaylock_state *state;
15 struct wl_pointer *pointer;
16 struct wl_keyboard *keyboard;
17};
18
13extern const struct wl_seat_listener seat_listener; 19extern const struct wl_seat_listener seat_listener;
14 20
15#endif 21#endif