aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/wlr/xwayland.h17
-rw-r--r--include/xwayland/internals.h6
2 files changed, 23 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
diff --git a/include/xwayland/internals.h b/include/xwayland/internals.h
new file mode 100644
index 00000000..b91f7930
--- /dev/null
+++ b/include/xwayland/internals.h
@@ -0,0 +1,6 @@
+#ifndef XWAYLAND_INTERNALS_H
+#define XWAYLAND_INTERNALS_H
+
+void unlink_sockets(int display);
+int open_display_sockets(int socks[2]);
+#endif