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