1
0
Fork 0
mirror of https://github.com/hyprwm/wlroots-hyprland.git synced 2025-02-03 04:19:50 +01:00
wlroots-hyprland/include/wlr/interfaces/wlr_tablet_pad.h

14 lines
347 B
C
Raw Normal View History

#ifndef _WLR_INTERFACES_TABLET_PAD_H
#define _WLR_INTERFACES_TABLET_PAD_H
#include <wlr/types/wlr_tablet_pad.h>
struct wlr_tablet_pad_impl {
2017-08-14 15:59:59 +02:00
void (*destroy)(struct wlr_tablet_pad *pad);
};
2017-08-14 15:59:59 +02:00
void wlr_tablet_pad_init(struct wlr_tablet_pad *pad,
struct wlr_tablet_pad_impl *impl);
void wlr_tablet_pad_destroy(struct wlr_tablet_pad *pad);
#endif