2017-06-13 02:22:40 +00:00
|
|
|
#ifndef _WLR_MULTI_BACKEND_INTERNAL
|
|
|
|
#define _WLR_MULTI_BACKEND_INTERNAL
|
|
|
|
|
|
|
|
#include <wlr/backend/interface.h>
|
|
|
|
#include <wlr/backend/multi.h>
|
2017-07-11 06:51:19 +00:00
|
|
|
#include <wlr/backend/udev.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;
|
|
|
|
struct wlr_udev *udev;
|
2017-06-13 02:22:40 +00:00
|
|
|
list_t *backends;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|