1
0
Fork 0
mirror of https://github.com/hyprwm/wlroots-hyprland.git synced 2025-03-02 08:52:08 +01:00
wlroots-hyprland/include/backend/multi.h
2017-09-23 10:26:01 +02:00

16 lines
293 B
C

#ifndef BACKEND_MULTI_H
#define BACKEND_MULTI_H
#include <wlr/backend/interface.h>
#include <wlr/backend/multi.h>
#include <wlr/util/list.h>
#include <wlr/backend/session.h>
struct wlr_multi_backend {
struct wlr_backend backend;
struct wlr_session *session;
list_t *backends;
};
#endif