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.
18 lines
390 B
18 lines
390 B
8 years ago
|
#ifndef _WLR_BACKEND_INTERFACE_H
|
||
|
#define _WLR_BACKEND_INTERFACE_H
|
||
8 years ago
|
|
||
|
#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
|