Move code to make a window a shell surface into seperate function

This commit is contained in:
David Eklov 2016-07-04 17:01:37 -05:00
parent 51204b33c1
commit bb35960e65
2 changed files with 8 additions and 3 deletions

View file

@ -42,5 +42,6 @@ struct window *window_setup(struct registry *registry, uint32_t width, uint32_t
void window_teardown(struct window *state);
int window_prerender(struct window *state);
int window_render(struct window *state);
void window_make_shell(struct window *window);
#endif