mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
18 lines
371 B
C
18 lines
371 B
C
#ifndef _WLR_MULTI_BACKEND_INTERNAL
|
|
#define _WLR_MULTI_BACKEND_INTERNAL
|
|
|
|
#include <wlr/backend/interface.h>
|
|
#include <wlr/backend/multi.h>
|
|
#include <wlr/backend/udev.h>
|
|
#include <wlr/util/list.h>
|
|
#include <wlr/backend/session.h>
|
|
|
|
struct wlr_multi_backend {
|
|
struct wlr_backend backend;
|
|
|
|
struct wlr_session *session;
|
|
struct wlr_udev *udev;
|
|
list_t *backends;
|
|
};
|
|
|
|
#endif
|