wlroots-hyprland/include/wlr/interfaces/wlr_pointer.h

15 lines
342 B
C
Raw Normal View History

#ifndef WLR_INTERFACES_WLR_POINTER_H
#define WLR_INTERFACES_WLR_POINTER_H
#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-08-14 15:55:48 +02:00
void wlr_pointer_init(struct wlr_pointer *pointer,
const struct wlr_pointer_impl *impl);
void wlr_pointer_destroy(struct wlr_pointer *pointer);
#endif