2017-09-22 02:58:41 +00:00
|
|
|
#ifndef WLR_BACKEND_X11_H
|
|
|
|
#define WLR_BACKEND_X11_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
2017-09-22 04:00:27 +00:00
|
|
|
#include <wayland-server.h>
|
|
|
|
#include <wlr/backend.h>
|
2017-09-22 02:58:41 +00:00
|
|
|
|
2017-09-22 04:00:27 +00:00
|
|
|
struct wlr_backend *wlr_x11_backend_create(struct wl_display *display,
|
|
|
|
const char *x11_display);
|
2017-09-22 02:58:41 +00:00
|
|
|
|
|
|
|
bool wlr_backend_is_x11(struct wlr_backend *backend);
|
|
|
|
|
|
|
|
#endif
|