mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-04 13:29:45 -05:00
Starts to update the wayland backend to the new backend api. Not yet updated to libinput branch (not yet compiling).
11 lines
240 B
C
11 lines
240 B
C
#ifndef WLR_BACKEND_WAYLAND_H
|
|
#define WLR_BACKEND_WAYLAND_H
|
|
|
|
#include <wayland-client.h>
|
|
#include <wayland-server.h>
|
|
#include <wlr/backend.h>
|
|
|
|
struct wlr_backend *wlr_wl_backend_create(struct wl_display *display,
|
|
size_t outputs);
|
|
|
|
#endif
|