mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
bde25fe020
Signed-off-by: Heghedus Razvan <heghedus.razvan@gmail.com>
16 lines
299 B
C
16 lines
299 B
C
#ifndef BACKEND_MULTI_H
|
|
#define BACKEND_MULTI_H
|
|
|
|
#include <wlr/backend/interface.h>
|
|
#include <wlr/backend/multi.h>
|
|
#include <wlr/backend/session.h>
|
|
#include <wayland-util.h>
|
|
|
|
struct wlr_multi_backend {
|
|
struct wlr_backend backend;
|
|
|
|
struct wlr_session *session;
|
|
struct wl_list backends;
|
|
};
|
|
|
|
#endif
|