aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJan Staněk <jstanek@redhat.com>2020-01-28 15:27:24 +0100
committerSimon Ser <contact@emersion.fr>2020-01-28 15:45:58 +0100
commitf2943bdf61afe0a3ad2227d72fcbcac8b3088b1a (patch)
treed60e4c09d97faee4b407b6e202cc5d2eed566523 /include
parent7f2bd0b21116e4cc3943b3bccf75cb94f95c1fc3 (diff)
Declare wlr_seat globals as extern
Diffstat (limited to 'include')
-rw-r--r--include/types/wlr_seat.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/types/wlr_seat.h b/include/types/wlr_seat.h
index 0ccb3345..2a3cd69b 100644
--- a/include/types/wlr_seat.h
+++ b/include/types/wlr_seat.h
@@ -4,9 +4,9 @@
#include <wayland-server-core.h>
#include <wlr/types/wlr_seat.h>
-const struct wlr_pointer_grab_interface default_pointer_grab_impl;
-const struct wlr_keyboard_grab_interface default_keyboard_grab_impl;
-const struct wlr_touch_grab_interface default_touch_grab_impl;
+extern const struct wlr_pointer_grab_interface default_pointer_grab_impl;
+extern const struct wlr_keyboard_grab_interface default_keyboard_grab_impl;
+extern const struct wlr_touch_grab_interface default_touch_grab_impl;
void seat_client_create_pointer(struct wlr_seat_client *seat_client,
uint32_t version, uint32_t id);