2017-09-23 08:26:01 +00:00
|
|
|
#ifndef BACKEND_MULTI_H
|
|
|
|
#define BACKEND_MULTI_H
|
2017-06-13 02:22:40 +00:00
|
|
|
|
|
|
|
#include <wlr/backend/interface.h>
|
|
|
|
#include <wlr/backend/multi.h>
|
2017-06-21 16:10:07 +00:00
|
|
|
#include <wlr/util/list.h>
|
2017-07-11 07:18:34 +00:00
|
|
|
#include <wlr/backend/session.h>
|
2017-06-13 02:22:40 +00:00
|
|
|
|
2017-08-12 15:43:36 +00:00
|
|
|
struct wlr_multi_backend {
|
|
|
|
struct wlr_backend backend;
|
|
|
|
|
2017-07-11 06:51:19 +00:00
|
|
|
struct wlr_session *session;
|
2017-06-13 02:22:40 +00:00
|
|
|
list_t *backends;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|