aboutsummaryrefslogtreecommitdiff
path: root/include/swaylock/seat.h
diff options
context:
space:
mode:
authorRyan Dwyer <ryandwyer1@gmail.com>2018-10-24 22:04:16 +1000
committerRyan Dwyer <ryandwyer1@gmail.com>2018-10-24 22:04:16 +1000
commit17bb39cd499a2fa423272b62b61368aa0044afe2 (patch)
tree913c25041f628e8afb2d7e1f0ab1c4a5f9a20ec5 /include/swaylock/seat.h
parentbdb176863c3c45caae70abb909f9eca9f611e78f (diff)
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 {
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