aboutsummaryrefslogtreecommitdiff
path: root/include/wlr/xwayland.h
blob: 6138670069849425c92a2d7d9f53c37f673df43a (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
27
#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 wl_event_source *sigusr1_source;
	struct wlr_xwm *xwm;
};

void wlr_xwayland_destroy(struct wlr_xwayland *wlr_xwayland);
struct wlr_xwayland *wlr_xwayland_create(struct wl_display *wl_display,
		struct wlr_compositor *compositor);

#endif