1 2 3 4 5 6 7 8 9 10 11 12 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