aboutsummaryrefslogtreecommitdiff
path: root/examples/compositor.h
blob: 4773b83d3861d31110ca7f2dc925a53886f3ff26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _EXAMPLE_COMPOSITOR_H
#define _EXAMPLE_COMPOSITOR_H
#include <wayland-server.h>

struct wl_compositor_state {
	struct wl_global *wl_global;
	struct wl_list wl_resources;
};

void wl_compositor_init(struct wl_display *display,
		struct wl_compositor_state *state);

struct wl_shell_state {
	struct wl_global *wl_global;
	struct wl_list wl_resources;
};

void wl_shell_init(struct wl_display *display,
		struct wl_shell_state *state);

#endif