mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-02 09:01:38 -05:00
10 lines
227 B
C
10 lines
227 B
C
#ifndef _WLR_BACKEND_MULTI_H
|
|
#define _WLR_BACKEND_MULTI_H
|
|
|
|
#include <wlr/backend.h>
|
|
|
|
struct wlr_backend *wlr_multi_backend_create();
|
|
void wlr_multi_backend_add(struct wlr_backend *multi,
|
|
struct wlr_backend *backend);
|
|
|
|
#endif
|