diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-04-25 15:06:58 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-04-25 15:06:58 -0400 |
commit | de01e654cef2c72dce3adb580e20fe2cbc8aeb16 (patch) | |
tree | 11dbed7b9a15b1f0bb43320243c74e780e791c99 /include/wlr/backend | |
parent | 52e6ed54cbaf05cd1829099e04427d1706ca0da4 (diff) |
Flesh out wayland backend somewhat, add example
Diffstat (limited to 'include/wlr/backend')
-rw-r--r-- | include/wlr/backend/wayland.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/wlr/backend/wayland.h b/include/wlr/backend/wayland.h new file mode 100644 index 00000000..4318cc26 --- /dev/null +++ b/include/wlr/backend/wayland.h @@ -0,0 +1,14 @@ +#ifndef _WLR_BACKEND_WAYLAND_INTERNAL_H +#define _WLR_BACKEND_WAYLAND_INTERNAL_H + +#include <wayland-client.h> +#include <wayland-server.h> +#include <wlr/wayland.h> + +struct wlr_wl_backend; + +void wlr_wl_backend_free(struct wlr_wl_backend *backend); +struct wlr_wl_backend *wlr_wl_backend_init(struct wl_display *display, + size_t outputs); + +#endif |