You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
371 B
19 lines
371 B
#ifndef _WLR_MULTI_BACKEND_INTERNAL
|
|
#define _WLR_MULTI_BACKEND_INTERNAL
|
|
|
|
#include <wlr/backend/interface.h>
|
|
#include <wlr/backend/multi.h>
|
|
#include <wlr/backend/udev.h>
|
|
#include <wlr/util/list.h>
|
|
#include <wlr/backend/session.h>
|
|
|
|
struct wlr_multi_backend {
|
|
struct wlr_backend backend;
|
|
|
|
struct wlr_session *session;
|
|
struct wlr_udev *udev;
|
|
list_t *backends;
|
|
};
|
|
|
|
#endif
|