summaryrefslogtreecommitdiff
path: root/stage3/font.h
diff options
context:
space:
mode:
Diffstat (limited to 'stage3/font.h')
-rw-r--r--stage3/font.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/stage3/font.h b/stage3/font.h
index 03772db..44019bb 100644
--- a/stage3/font.h
+++ b/stage3/font.h
@@ -3,8 +3,15 @@
#include "def.h"
+typedef struct {
+ u16 x,y;
+} term_pos;
+
void font_init();
void font_set_size(u16 size);
+void font_set_cursor(term_pos new_cursor);
+term_pos font_get_cursor();
+term_pos font_get_size();
void font_load_blob(const void *blob);
void font_load_classic();
void font_load_builtin();