diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-06-12 22:22:40 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-06-13 08:10:36 -0400 |
commit | e257afeb7ea72a035202be02c90490eb3cb7129b (patch) | |
tree | 20c5e08776311cd7192f2b84cfd7415078cdb2ad /include/wlr | |
parent | 5dd96c077238b314162570655ea970ba6c2f8693 (diff) |
Establish multi backend support
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/backend/multi.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/wlr/backend/multi.h b/include/wlr/backend/multi.h new file mode 100644 index 00000000..a07ca770 --- /dev/null +++ b/include/wlr/backend/multi.h @@ -0,0 +1,10 @@ +#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 |