mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-07 14:06:00 +01:00
14 lines
343 B
C
14 lines
343 B
C
#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
|