2018-07-13 14:40:56 +02:00
|
|
|
/*
|
|
|
|
* This an unstable interface of wlroots. No guarantees are made regarding the
|
|
|
|
* future consistency of this API.
|
|
|
|
*/
|
|
|
|
#ifndef WLR_USE_UNSTABLE
|
|
|
|
#error "Add -DWLR_USE_UNSTABLE to enable unstable wlroots features"
|
|
|
|
#endif
|
|
|
|
|
2017-09-23 10:26:01 +02:00
|
|
|
#ifndef WLR_INTERFACES_WLR_TABLET_PAD_H
|
|
|
|
#define WLR_INTERFACES_WLR_TABLET_PAD_H
|
|
|
|
|
2017-06-20 00:41:02 +02:00
|
|
|
#include <wlr/types/wlr_tablet_pad.h>
|
|
|
|
|
|
|
|
struct wlr_tablet_pad_impl {
|
2022-03-02 21:11:25 +01:00
|
|
|
const char *name;
|
2017-06-20 00:41:02 +02:00
|
|
|
};
|
|
|
|
|
2017-08-14 15:59:59 +02:00
|
|
|
void wlr_tablet_pad_init(struct wlr_tablet_pad *pad,
|
2022-02-09 16:36:34 +01:00
|
|
|
const struct wlr_tablet_pad_impl *impl, const char *name);
|
2022-03-02 21:11:25 +01:00
|
|
|
|
|
|
|
/**
|
2022-05-24 18:46:59 +02:00
|
|
|
* Cleans up the resources owned by a struct wlr_tablet_pad.
|
|
|
|
*
|
|
|
|
* This function will not clean the memory allocated by
|
|
|
|
* struct wlr_tablet_pad_group, it's the responsibility of the caller to clean
|
|
|
|
* it.
|
2022-03-02 21:11:25 +01:00
|
|
|
*/
|
|
|
|
void wlr_tablet_pad_finish(struct wlr_tablet_pad *pad);
|
2017-06-20 00:41:02 +02:00
|
|
|
|
|
|
|
#endif
|