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/gui.h | |
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/gui.h')
-rw-r--r-- | src/inc/gui.h | 2 |
1 files changed, 2 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 |