diff options
-rw-r--r-- | main.c | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -409,9 +409,21 @@ xdg_toplevel_handle_close(void *data, struct xdg_toplevel *xdg_toplevel) ctx->quit = true; } +static void +xdg_toplevel_handle_configure_bounds(void *data, struct xdg_toplevel *toplevel, int32_t width, int32_t height) +{ +} + +static void +xdg_toplevel_wm_capabilities(void *data, struct xdg_toplevel *xdg_toplevel, struct wl_array *capabilities) +{ +} + static const struct xdg_toplevel_listener xdg_toplevel_listener = { xdg_toplevel_handle_configure, xdg_toplevel_handle_close, + xdg_toplevel_handle_configure_bounds, + xdg_toplevel_wm_capabilities, }; |