aboutsummaryrefslogtreecommitdiffstats
path: root/kbd.c
diff options
context:
space:
mode:
Diffstat (limited to 'kbd.c')
-rw-r--r--kbd.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/kbd.c b/kbd.c
index d9ce8b3..9dd8241 100644
--- a/kbd.c
+++ b/kbd.c
@@ -15,6 +15,19 @@
/* ---------------------------------------------------------------------- */
+struct xkb_context *xkb_ctx;
+struct xkb_keymap *xkb_map;
+struct xkb_state *xkb_state;
+struct xkb_rule_names xkb_layout = {
+ .rules = NULL,
+ .model = "pc105",
+ .layout = "us",
+ .variant = NULL,
+ .options = NULL,
+};
+
+/* ---------------------------------------------------------------------- */
+
struct termctrl {
const char *seq;
uint32_t code;