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