aboutsummaryrefslogtreecommitdiff
path: root/include/wlr/xwayland.h
blob: f61a90bd91120adc9fa91f711005056ed894d426 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#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;
        int display;
        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 wlr_compositor *compositor);

#endif