Add xdg shell stubs

This commit is contained in:
Tony Crisci 2017-08-08 08:09:14 -04:00
parent 347707c962
commit c3f15ea284
6 changed files with 164 additions and 1 deletions

View file

@ -19,7 +19,15 @@ struct wl_shell_state {
struct wl_list wl_resources;
};
struct xdg_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);
void xdg_shell_init(struct wl_display *display,
struct xdg_shell_state *state);
#endif