mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-03 09:01:40 -05:00
18 lines
405 B
C
18 lines
405 B
C
|
|
#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
|