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/backend/multi.h | |
parent | 5dd96c077238b314162570655ea970ba6c2f8693 (diff) |
Establish multi backend support
Diffstat (limited to 'include/backend/multi.h')
-rw-r--r-- | include/backend/multi.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/backend/multi.h b/include/backend/multi.h new file mode 100644 index 00000000..5e6930bb --- /dev/null +++ b/include/backend/multi.h @@ -0,0 +1,13 @@ +#ifndef _WLR_MULTI_BACKEND_INTERNAL +#define _WLR_MULTI_BACKEND_INTERNAL + +#include <wlr/backend/interface.h> +#include <wlr/backend/multi.h> +#include <wlr/common/list.h> + +struct wlr_backend_state { + struct wlr_backend *backend; + list_t *backends; +}; + +#endif |