diff options
Diffstat (limited to 'src/inc')
-rw-r--r-- | src/inc/gui.h | 2 | ||||
-rw-r--r-- | src/inc/vesa.h | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/inc/gui.h b/src/inc/gui.h index 130db8b..760bcb9 100644 --- a/src/inc/gui.h +++ b/src/inc/gui.h @@ -15,6 +15,8 @@ struct font { }; void gui_write(int x, int y, const u32 c[3], char *text); +void gui_term_write_char(char ch); +void gui_term_write(char *text); void gui_init(char *font_path); #endif diff --git a/src/inc/vesa.h b/src/inc/vesa.h index e1ea521..e34cdc0 100644 --- a/src/inc/vesa.h +++ b/src/inc/vesa.h @@ -44,6 +44,8 @@ struct vbe { }; struct vbe *vbe; +int vbe_width; +int vbe_height; int vbe_bpl; int vbe_pitch; u8 *fb; |