diff options
author | Scott Anderson <ascent12@hotmail.com> | 2017-09-22 16:00:27 +1200 |
---|---|---|
committer | Scott Anderson <ascent12@hotmail.com> | 2017-09-29 16:12:13 +1300 |
commit | 7ad2a57feb4c7e4b191edfbaa68ff3a2fd703f9f (patch) | |
tree | 7a380f1122c567b6b913b232d0d07f49c70183a6 /include/wlr | |
parent | a598e6d026548ce7ab580504e05a71a5296b83f0 (diff) |
Open X11 Window
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/backend/x11.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/wlr/backend/x11.h b/include/wlr/backend/x11.h index 28d027c5..3901649b 100644 --- a/include/wlr/backend/x11.h +++ b/include/wlr/backend/x11.h @@ -1,10 +1,12 @@ #ifndef WLR_BACKEND_X11_H #define WLR_BACKEND_X11_H -#include <wlr/backend.h> #include <stdbool.h> +#include <wayland-server.h> +#include <wlr/backend.h> -struct wlr_backend *wlr_x11_backend_create(const char *display); +struct wlr_backend *wlr_x11_backend_create(struct wl_display *display, + const char *x11_display); bool wlr_backend_is_x11(struct wlr_backend *backend); |