blob: 63bac6b8aa9223976fa8fb8863fa44c3e08e2216 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef WLR_INTERFACES_WLR_TOUCH_H
#define WLR_INTERFACES_WLR_TOUCH_H
#include <wlr/types/wlr_touch.h>
struct wlr_touch_impl {
void (*destroy)(struct wlr_touch *touch);
};
void wlr_touch_init(struct wlr_touch *touch,
struct wlr_touch_impl *impl);
void wlr_touch_destroy(struct wlr_touch *touch);
#endif
|