From 5860f8c0d690d430424a7b619558024691c71f69 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 26 Jul 2020 16:18:54 +0200 Subject: Added simple keyboard input. This is somewhat of a demo. The real gui will be implemented completely different (ig) --- src/inc/gui.h | 2 ++ src/inc/vesa.h | 2 ++ 2 files changed, 4 insertions(+) (limited to 'src/inc') 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; -- cgit v1.2.3