1
0
Fork 0
mirror of https://github.com/NickHu/sway synced 2025-01-16 15:41:47 +01:00
sway-patched-tray-menu/include/swaylock/seat.h

16 lines
286 B
C
Raw Normal View History

2018-04-03 05:14:37 +02:00
#ifndef _SWAYLOCK_SEAT_H
#define _SWAYLOCK_SEAT_H
#include <xkbcommon/xkbcommon.h>
struct swaylock_xkb {
bool caps_lock;
bool control;
2018-04-03 05:14:37 +02:00
struct xkb_state *state;
struct xkb_context *context;
struct xkb_keymap *keymap;
};
extern const struct wl_seat_listener seat_listener;
#endif