summaryrefslogtreecommitdiffstats
path: root/include/xkb-internal.h
blob: 7660646032360c83bced5001481ac203a20ba52d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef ROFI_XKB_INTERNAL_H
#define ROFI_XKB_INTERNAL_H

#include <xkbcommon/xkbcommon.h>

struct xkb_stuff {
    xcb_connection_t   *xcb_connection;
    struct xkb_context *context;
    uint8_t            first_event;
    int32_t            device_id;
    struct xkb_keymap  *keymap;
    struct xkb_state   *state;
};

#endif