mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-04 13:29:45 -05:00
12 lines
228 B
C
12 lines
228 B
C
|
|
#ifndef WLR_BACKEND_X11_H
|
||
|
|
#define WLR_BACKEND_X11_H
|
||
|
|
|
||
|
|
#include <wlr/backend.h>
|
||
|
|
#include <stdbool.h>
|
||
|
|
|
||
|
|
struct wlr_backend *wlr_x11_backend_create(const char *display);
|
||
|
|
|
||
|
|
bool wlr_backend_is_x11(struct wlr_backend *backend);
|
||
|
|
|
||
|
|
#endif
|