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_POINTER_H
|
|
|
|
#define WLR_INTERFACES_WLR_POINTER_H
|
|
|
|
|
2017-06-20 00:41:02 +02:00
|
|
|
#include <wlr/types/wlr_pointer.h>
|
|
|
|
|
|
|
|
struct wlr_pointer_impl {
|
2017-08-14 15:55:48 +02:00
|
|
|
void (*destroy)(struct wlr_pointer *pointer);
|
2017-06-20 00:41:02 +02:00
|
|
|
};
|
|
|
|
|
2017-08-14 15:55:48 +02:00
|
|
|
void wlr_pointer_init(struct wlr_pointer *pointer,
|
2018-04-28 13:55:36 +02:00
|
|
|
const struct wlr_pointer_impl *impl);
|
2017-06-20 00:41:02 +02:00
|
|
|
void wlr_pointer_destroy(struct wlr_pointer *pointer);
|
|
|
|
|
|
|
|
#endif
|