Add first try to add wl_shell to rootston

This commit is contained in:
emersion 2017-09-26 23:59:25 +02:00
parent 1ddda91b1b
commit ed9a43c213
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48
6 changed files with 97 additions and 3 deletions

View file

@ -39,6 +39,7 @@ struct roots_desktop {
struct wl_listener output_add;
struct wl_listener output_remove;
struct wl_listener xdg_shell_v6_surface;
struct wl_listener wl_shell_surface;
};
struct roots_server;
@ -55,5 +56,6 @@ void output_add_notify(struct wl_listener *listener, void *data);
void output_remove_notify(struct wl_listener *listener, void *data);
void handle_xdg_shell_v6_surface(struct wl_listener *listener, void *data);
void handle_wl_shell_surface(struct wl_listener *listener, void *data);
#endif