aboutsummaryrefslogtreecommitdiff
path: root/host/main.h
diff options
context:
space:
mode:
Diffstat (limited to 'host/main.h')
-rw-r--r--host/main.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/host/main.h b/host/main.h
index a33bea1..bbfcf74 100644
--- a/host/main.h
+++ b/host/main.h
@@ -1,3 +1,6 @@
-color_t * framebuffer_render_text(char *s, glyph_t **glyph_table, unsigned int glyph_table_size);
-void console_render_buffer(uint8_t *gbuf, unsigned int gbufwidth, unsigned int gbufheight);
+#include "color.h"
+#include "font.h"
+
+framebuffer_t *framebuffer_render_text(char *s, glyph_t **glyph_table, unsigned int glyph_table_size);
+void console_render_buffer(framebuffer_t *fb);