mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 20:05:58 +01:00
53a8b4f127
TODO: Update the code accordingly and move other types into the same paradigm
15 lines
454 B
C
15 lines
454 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_state *state);
|
|
void (*led_update)(struct wlr_keyboard_state *state, uint32_t leds);
|
|
};
|
|
|
|
struct wlr_keyboard *wlr_keyboard_create(struct wlr_keyboard_impl *impl,
|
|
struct wlr_keyboard_state *state);
|
|
void wlr_keyboard_destroy(struct wlr_keyboard *keyboard);
|
|
|
|
#endif
|