diff options
author | Marvin Borner | 2020-07-26 16:18:54 +0200 |
---|---|---|
committer | Marvin Borner | 2020-07-26 16:18:54 +0200 |
commit | 5860f8c0d690d430424a7b619558024691c71f69 (patch) | |
tree | bfc9dee83ff15da1a2eda39ad312709d22244226 /src/inc | |
parent | d8410862be2f00bf2ce321bc28b8322f2de944a9 (diff) |
Added simple keyboard input.
This is somewhat of a demo. The real gui will be implemented completely
different (ig)
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; |