wlroots-hyprland/include/backend/multi.h

17 lines
293 B
C
Raw Normal View History

#ifndef BACKEND_MULTI_H
#define BACKEND_MULTI_H
2017-06-12 22:22:40 -04:00
#include <wlr/backend/interface.h>
#include <wlr/backend/multi.h>
2017-06-21 12:10:07 -04:00
#include <wlr/util/list.h>
2017-07-11 19:18:34 +12:00
#include <wlr/backend/session.h>
2017-06-12 22:22:40 -04:00
struct wlr_multi_backend {
struct wlr_backend backend;
struct wlr_session *session;
2017-06-12 22:22:40 -04:00
list_t *backends;
};
#endif