blob: b5fcef18dd6bf1d65731d9f9ba1f87786c7e8a66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _WLR_INTERFACES_TOUCH_H
#define _WLR_INTERFACES_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
|