diff options
author | pommicket <pommicket@gmail.com> | 2023-08-06 09:29:33 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-08-06 09:29:33 -0400 |
commit | fe45ee7e366565d94d71facb3e04cd3d4a870758 (patch) | |
tree | 6768a388ae2faf8b1e14575758dc40693bea2da4 /ted-internal.h | |
parent | 518851c0cde788a807e640377a7093ab4e8c5b5f (diff) |
open menu working under new system
Diffstat (limited to 'ted-internal.h')
-rw-r--r-- | ted-internal.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ted-internal.h b/ted-internal.h index bb76a3c..83a088d 100644 --- a/ted-internal.h +++ b/ted-internal.h @@ -283,6 +283,7 @@ typedef struct { } FileEntry; struct FileSelector { + char title[32]; Selector sel; Rect bounds; u32 n_entries; @@ -797,6 +798,8 @@ void macro_add(Ted *ted, Command command, const CommandArgument *argument); void macros_free(Ted *ted); // === menu.c === +void menu_init(Ted *ted); +void menu_quit(Ted *ted); void menu_update(Ted *ted); void menu_render(Ted *ted); /// move to next/previous command |