You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
404 B

#ifndef _ROOTSTON_POINTER_H
#define _ROOTSTON_POINTER_H
#include <wayland-server.h>
#include <wlr/types/wlr_input_device.h>
struct roots_pointer {
struct roots_input *input;
struct wlr_input_device *device;
struct wl_list link;
};
void pointer_add(struct wlr_input_device *device, struct roots_input *input);
void pointer_remove(struct wlr_input_device *device, struct roots_input *input);
#endif