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.
14 lines
256 B
14 lines
256 B
8 years ago
|
#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
|