diff options
Diffstat (limited to 'include/backend.h')
-rw-r--r-- | include/backend.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/include/backend.h b/include/backend.h deleted file mode 100644 index d42c6f17..00000000 --- a/include/backend.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _WLR_BACKEND_INTERNAL_H -#define _WLR_BACKEND_INTERNAL_H - -#include <stdbool.h> -#include <wlr/backend.h> - -struct wlr_backend_state; - -struct wlr_backend_impl { - bool (*init)(struct wlr_backend_state *state); - void (*destroy)(struct wlr_backend_state *state); -}; - -struct wlr_backend *wlr_backend_create(const struct wlr_backend_impl *impl, - struct wlr_backend_state *state); - -#endif |