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.
11 lines
227 B
11 lines
227 B
8 years ago
|
#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
|