diff options
author | Marvin Borner | 2021-04-21 00:05:04 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-21 00:05:04 +0200 |
commit | c219c38e854fe15bc47519d2df0d6cbd7bab2ab7 (patch) | |
tree | 239b84c05371b4e853b40ebb52b1ad744fe0fc53 /src/inc/gui.h | |
parent | f31fc8b66eee149bd78603996f34264be8fad411 (diff) |
Started syntax highlighting
doesn't work but don't want to fix lel.
Diffstat (limited to 'src/inc/gui.h')
-rw-r--r-- | src/inc/gui.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/inc/gui.h b/src/inc/gui.h index 1c7fc01..aa059e5 100644 --- a/src/inc/gui.h +++ b/src/inc/gui.h @@ -1,8 +1,11 @@ #ifndef GUI_H #define GUI_H +#include <def.h> + int gui_init(int argc, char *argv[]); void gui_show_warning(const char *text); void gui_show_info(const char *text); +void gui_highlight(u32 column, u32 line, u32 length, const char *color); #endif |