diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/client.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/client.h b/include/client.h index ec3537ca..f10e6b1a 100644 --- a/include/client.h +++ b/include/client.h @@ -4,6 +4,7 @@ #include <wayland-client.h> #include <cairo/cairo.h> #include <pango/pangocairo.h> +#include <stdbool.h> #include "list.h" struct output_state { @@ -28,6 +29,8 @@ struct client_state { struct buffer *buffer; struct wl_surface *surface; struct wl_shell_surface *shell_surface; + struct wl_callback *frame_cb; + bool busy; cairo_t *cairo; cairo_surface_t *cairo_surface; PangoContext *pango; |