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.
22 lines
449 B
22 lines
449 B
8 years ago
|
#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
|