You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
425 B
15 lines
425 B
#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);
|
|
|
|
#endif
|