mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-07 14:06:00 +01:00
d9e978e1b3
The previous naming was based on the input-device capability names from libinput. With code that uses the libinput_tablet_tool and mapping into tablet-v2, this is confusing, so the name is changed to follow the names used in the protocol.
14 lines
338 B
C
14 lines
338 B
C
#ifndef WLR_INTERFACES_WLR_TABLET_TOOL_H
|
|
#define WLR_INTERFACES_WLR_TABLET_TOOL_H
|
|
|
|
#include <wlr/types/wlr_tablet_tool.h>
|
|
|
|
struct wlr_tablet_impl {
|
|
void (*destroy)(struct wlr_tablet *tablet);
|
|
};
|
|
|
|
void wlr_tablet_init(struct wlr_tablet *tablet,
|
|
struct wlr_tablet_impl *impl);
|
|
void wlr_tablet_destroy(struct wlr_tablet *tablet);
|
|
|
|
#endif
|