mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 03:45:58 +01:00
13 lines
256 B
C
13 lines
256 B
C
#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
|