mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-29 05:40:12 -04:00
16 lines
528 B
C
16 lines
528 B
C
#ifndef _WLR_INTERFACE_KEYBOARD_H
|
|
#define _WLR_INTERFACE_KEYBOARD_H
|
|
#include <wlr/types/wlr_keyboard.h>
|
|
#include <stdint.h>
|
|
|
|
struct wlr_keyboard_impl {
|
|
void (*destroy)(struct wlr_keyboard *keyboard);
|
|
void (*led_update)(struct wlr_keyboard *keyboard, uint32_t leds);
|
|
};
|
|
|
|
void wlr_keyboard_init(struct wlr_keyboard *keyboard, struct wlr_keyboard_impl *impl);
|
|
void wlr_keyboard_destroy(struct wlr_keyboard *keyboard);
|
|
void wlr_keyboard_update_state(struct wlr_keyboard *keyboard,
|
|
struct wlr_event_keyboard_key *event);
|
|
|
|
#endif
|