aboutsummaryrefslogtreecommitdiff
path: root/include/wlr
diff options
context:
space:
mode:
authorHeghedus Razvan <heghedus.razvan@gmail.com>2017-10-14 19:17:43 +0300
committerHeghedus Razvan <heghedus.razvan@gmail.com>2017-10-20 11:50:43 +0300
commite1f196a3e9477385ca30180686cda82e3ab735ce (patch)
tree65fafc2cc2bc5b4ed99f63d1bd4658002a055ed9 /include/wlr
parent1d716241afbc721c3ae65d4a2bb0e25866fe081c (diff)
Replace list_t with wl_list for wlr_input_device
Signed-off-by: Heghedus Razvan <heghedus.razvan@gmail.com>
Diffstat (limited to 'include/wlr')
-rw-r--r--include/wlr/types/wlr_input_device.h2
-rw-r--r--include/wlr/xwayland.h1
2 files changed, 3 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_input_device.h b/include/wlr/types/wlr_input_device.h
index 50b0fb88..306a1166 100644
--- a/include/wlr/types/wlr_input_device.h
+++ b/include/wlr/types/wlr_input_device.h
@@ -45,6 +45,8 @@ struct wlr_input_device {
} events;
void *data;
+
+ struct wl_list link;
};
#endif
diff --git a/include/wlr/xwayland.h b/include/wlr/xwayland.h
index 09f9fbac..4f309a96 100644
--- a/include/wlr/xwayland.h
+++ b/include/wlr/xwayland.h
@@ -5,6 +5,7 @@
#include <stdbool.h>
#include <wlr/types/wlr_compositor.h>
#include <xcb/xcb.h>
+#include <wlr/util/list.h>
#ifdef HAS_XCB_ICCCM
#include <xcb/xcb_icccm.h>