mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 20:05:58 +01:00
21 lines
555 B
C
21 lines
555 B
C
#ifndef WLR_BACKEND_MULTI_H
|
|
#define WLR_BACKEND_MULTI_H
|
|
|
|
#include <wlr/backend.h>
|
|
#include <wlr/backend/session.h>
|
|
|
|
struct wlr_backend *wlr_multi_backend_create(struct wl_display *display);
|
|
|
|
void wlr_multi_backend_add(struct wlr_backend *multi,
|
|
struct wlr_backend *backend);
|
|
|
|
void wlr_multi_backend_remove(struct wlr_backend *multi,
|
|
struct wlr_backend *backend);
|
|
|
|
bool wlr_backend_is_multi(struct wlr_backend *backend);
|
|
|
|
struct wlr_session *wlr_multi_get_session(struct wlr_backend *base);
|
|
|
|
bool wlr_multi_is_empty(struct wlr_backend *backend);
|
|
|
|
#endif
|