aboutsummaryrefslogtreecommitdiff
path: root/include/rootston/touch.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/rootston/touch.h')
-rw-r--r--include/rootston/touch.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/include/rootston/touch.h b/include/rootston/touch.h
deleted file mode 100644
index 1624c3ad..00000000
--- a/include/rootston/touch.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef _ROOTSTON_TOUCH_H
-#define _ROOTSTON_TOUCH_H
-
-#include <wayland-server.h>
-
-struct roots_touch {
- struct roots_input *input;
- struct wlr_input_device *device;
- struct wl_list link;
-};
-
-struct roots_touch_point {
- struct roots_touch *device;
- int32_t slot;
- double x, y;
- struct wl_list link;
-};
-
-void touch_add(struct wlr_input_device *device, struct roots_input *input);
-void touch_remove(struct wlr_input_device *device, struct roots_input *input);
-
-#endif