diff options
author | Dominique Martinet <asmadeus@codewreck.org> | 2017-08-19 21:25:26 +0200 |
---|---|---|
committer | Dominique Martinet <asmadeus@codewreck.org> | 2017-08-23 22:03:49 +0200 |
commit | b2bab1af5c34b785a9b08db04af1330e61dd210c (patch) | |
tree | b898d84f0d9ab9ed4bf1243f93b481f2ff8a12d0 /include/wlr/xwayland.h | |
parent | 60451521bd6bd7d03255a206e35b0f88d5328311 (diff) |
xwayland: split xwm structure out, initial xwm.c
Diffstat (limited to 'include/wlr/xwayland.h')
-rw-r--r-- | include/wlr/xwayland.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/include/wlr/xwayland.h b/include/wlr/xwayland.h index ef9cc887..f61a90bd 100644 --- a/include/wlr/xwayland.h +++ b/include/wlr/xwayland.h @@ -1,5 +1,11 @@ #ifndef _WLR_XWAYLAND_H #define _WLR_XWAYLAND_H +#include <time.h> +#include <sys/types.h> +#include <stdbool.h> +#include <wlr/types/wlr_compositor.h> + +struct wlr_xwm; struct wlr_xwayland { pid_t pid; @@ -7,11 +13,14 @@ struct wlr_xwayland { int x_fd[2], wl_fd[2], wm_fd[2]; struct wl_client *client; struct wl_display *wl_display; + struct wlr_compositor *compositor; time_t server_start; + + struct wlr_xwm *xwm; }; void wlr_xwayland_finish(struct wlr_xwayland *wlr_xwayland); bool wlr_xwayland_init(struct wlr_xwayland *wlr_xwayland, - struct wl_display *wl_display); + struct wl_display *wl_display, struct wlr_compositor *compositor); #endif |