15 lines
769 B
C
15 lines
769 B
C
#if !defined CRYWL_XWAYLAND_H && defined XWAYLAND
|
|
#define CRYWL_XWAYLAND_H
|
|
|
|
static void activatex11(struct wl_listener *listener, void *data);
|
|
static void associatex11(struct wl_listener *listener, void *data);
|
|
static void configurex11(struct wl_listener *listener, void *data);
|
|
static void createnotifyx11(struct wl_listener *listener, void *data);
|
|
static void dissociatex11(struct wl_listener *listener, void *data);
|
|
static void sethints(struct wl_listener *listener, void *data);
|
|
static void xwaylandready(struct wl_listener *listener, void *data);
|
|
static struct wl_listener new_xwayland_surface = {.notify = createnotifyx11};
|
|
static struct wl_listener xwayland_ready = {.notify = xwaylandready};
|
|
static struct wlr_xwayland *xwayland;
|
|
|
|
#endif /* CRYWL_XWAYLAND_H */
|