mirror of
https://github.com/davatorium/rofi.git
synced 2024-10-27 05:23:18 -04:00
f39f5bb0cb
Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
22 lines
483 B
C
22 lines
483 B
C
#ifndef ROFI_XKB_INTERNAL_H
|
|
#define ROFI_XKB_INTERNAL_H
|
|
|
|
#include <xkbcommon/xkbcommon.h>
|
|
#include <xkbcommon/xkbcommon-compose.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;
|
|
struct
|
|
{
|
|
struct xkb_compose_table *table;
|
|
struct xkb_compose_state * state;
|
|
} compose;
|
|
};
|
|
|
|
#endif
|