mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 03:45:58 +01:00
21 lines
520 B
C
21 lines
520 B
C
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <wayland-server.h>
|
|
#include <wlr/types.h>
|
|
#include <wlr/common/list.h>
|
|
#include "types.h"
|
|
|
|
struct wlr_keyboard *wlr_keyboard_create(struct wlr_keyboard_impl *impl,
|
|
struct wlr_keyboard_state *state) {
|
|
struct wlr_keyboard *kb = calloc(1, sizeof(struct wlr_keyboard));
|
|
kb->impl = impl;
|
|
kb->state = state;
|
|
wl_signal_init(&kb->events.key);
|
|
return kb;
|
|
}
|
|
|
|
void wlr_keyboard_destroy(struct wlr_keyboard *kb) {
|
|
if (!kb) return;
|
|
kb->impl->destroy(kb->state);
|
|
free(kb);
|
|
}
|