mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-22 15:12:26 +00:00
bde25fe020
Signed-off-by: Heghedus Razvan <heghedus.razvan@gmail.com>
17 lines
299 B
C
17 lines
299 B
C
#ifndef BACKEND_MULTI_H
|
|
#define BACKEND_MULTI_H
|
|
|
|
#include <wlr/backend/interface.h>
|
|
#include <wlr/backend/multi.h>
|
|
#include <wlr/backend/session.h>
|
|
#include <wayland-util.h>
|
|
|
|
struct wlr_multi_backend {
|
|
struct wlr_backend backend;
|
|
|
|
struct wlr_session *session;
|
|
struct wl_list backends;
|
|
};
|
|
|
|
#endif
|