diff options
author | Dominique Martinet <asmadeus@codewreck.org> | 2017-08-19 17:59:31 +0200 |
---|---|---|
committer | Dominique Martinet <asmadeus@codewreck.org> | 2017-08-23 22:03:49 +0200 |
commit | 49a823d4c6b41723a9978c19d426e8ca4f5418d7 (patch) | |
tree | 95b21192f12d2e6dc9ae71a942a494ace3eb33e2 /include/wlr | |
parent | a138657598efafbd3cfd7c77cb32ba294d0b841c (diff) |
Xwayland: first draft, just start server for now
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/xwayland.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/wlr/xwayland.h b/include/wlr/xwayland.h new file mode 100644 index 00000000..ef9cc887 --- /dev/null +++ b/include/wlr/xwayland.h @@ -0,0 +1,17 @@ +#ifndef _WLR_XWAYLAND_H +#define _WLR_XWAYLAND_H + +struct wlr_xwayland { + pid_t pid; + int display; + int x_fd[2], wl_fd[2], wm_fd[2]; + struct wl_client *client; + struct wl_display *wl_display; + time_t server_start; +}; + +void wlr_xwayland_finish(struct wlr_xwayland *wlr_xwayland); +bool wlr_xwayland_init(struct wlr_xwayland *wlr_xwayland, + struct wl_display *wl_display); + +#endif |