Add a fullscreen mode to the terminal.
diff --git a/window.h b/window.h
index b4d524e..ffe81ad 100644
--- a/window.h
+++ b/window.h
@@ -44,9 +44,6 @@
int32_t x, int32_t y, int32_t width, int32_t height);
void
-window_set_minimum_size(struct window *window, uint32_t width, int32_t height);
-
-void
window_draw(struct window *window);
void
window_get_child_rectangle(struct window *window,
@@ -60,6 +57,9 @@
uint32_t name, uint32_t stride);
void
+window_set_fullscreen(struct window *window, int fullscreen);
+
+void
window_set_resize_handler(struct window *window,
window_resize_handler_t handler, void *data);
void