2017-06-12 22:22:40 -04:00
|
|
|
#ifndef _WLR_MULTI_BACKEND_INTERNAL
|
|
|
|
#define _WLR_MULTI_BACKEND_INTERNAL
|
|
|
|
|
|
|
|
#include <wlr/backend/interface.h>
|
|
|
|
#include <wlr/backend/multi.h>
|
2017-07-11 18:51:19 +12:00
|
|
|
#include <wlr/backend/udev.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
|
|
|
|
2017-08-12 11:43:36 -04:00
|
|
|
struct wlr_multi_backend {
|
|
|
|
struct wlr_backend backend;
|
|
|
|
|
2017-07-11 18:51:19 +12:00
|
|
|
struct wlr_session *session;
|
|
|
|
struct wlr_udev *udev;
|
2017-06-12 22:22:40 -04:00
|
|
|
list_t *backends;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|