aboutsummaryrefslogtreecommitdiff
path: root/include/wlr/backend.h
blob: b424c29f2c8aea89c4dcbf58fbda460a353c4a1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef _WLR_BACKEND_H
#define _WLR_BACKEND_H

#include <wayland-server.h>

struct wlr_backend_impl;
struct wlr_backend_state;

struct wlr_backend {
	const struct wlr_backend_impl *impl;
	struct wlr_backend_state *state;

	struct {
		struct wl_signal output_add;
		struct wl_signal output_remove;
		struct wl_signal keyboard_add;
		struct wl_signal keyboard_remove;
		struct wl_signal pointer_add;
		struct wl_signal pointer_remove;
		struct wl_signal touch_add;
		struct wl_signal touch_remove;
	} events;
};

struct wlr_backend *wlr_backend_autocreate();
bool wlr_backend_init(struct wlr_backend *backend);
void wlr_backend_destroy(struct wlr_backend *backend);

#endif