wlroots/include/wlr/backend/multi.h

17 lines
411 B
C
Raw Normal View History

#ifndef WLR_BACKEND_MULTI_H
#define WLR_BACKEND_MULTI_H
2017-06-13 02:22:40 +00:00
#include <wlr/backend.h>
2017-07-11 07:18:34 +00:00
#include <wlr/backend/session.h>
2017-06-13 02:22:40 +00:00
2017-12-19 23:25:46 +00:00
struct wlr_backend *wlr_multi_backend_create(struct wl_display *display);
2017-06-13 02:22:40 +00:00
void wlr_multi_backend_add(struct wlr_backend *multi,
struct wlr_backend *backend);
2017-06-13 02:22:40 +00:00
bool wlr_backend_is_multi(struct wlr_backend *backend);
2017-08-06 01:37:49 +00:00
struct wlr_session *wlr_multi_get_session(struct wlr_backend *base);
2017-06-13 02:22:40 +00:00
#endif