aboutsummaryrefslogtreecommitdiffstats
path: root/Library/UefiShellUfmCommandLib/menu-bar.c
diff options
context:
space:
mode:
Diffstat (limited to 'Library/UefiShellUfmCommandLib/menu-bar.c')
-rw-r--r--Library/UefiShellUfmCommandLib/menu-bar.c27
1 files changed, 16 insertions, 11 deletions
diff --git a/Library/UefiShellUfmCommandLib/menu-bar.c b/Library/UefiShellUfmCommandLib/menu-bar.c
index ff1ac7e..0503388 100644
--- a/Library/UefiShellUfmCommandLib/menu-bar.c
+++ b/Library/UefiShellUfmCommandLib/menu-bar.c
@@ -4,22 +4,27 @@
#include "tbi/win.h"
#include "menu-bar.h"
-struct window *menubar = NULL;
-
-BOOLEAN init_menubar(struct screen *scr)
+struct window *init_menubar(struct screen *scr)
{
- menubar = newwin(scr, scr->columns, 1, 0, 0);
+ struct window *menubar = newwin(scr, scr->columns, 1, 0, 0);
if(!menubar)
- return FALSE;
+ return NULL;
- wrefresh(menubar);
- return TRUE;
+ mvwprintf(menubar, 0, 0, L"Menu bar");
+ menubar_refresh(menubar);
+ return menubar;
}
-VOID free_menubar(VOID)
+VOID free_menubar(struct window *w)
{
- ASSERT(menubar != NULL);
+ ASSERT(w != NULL);
+
+ delwin(w);
+}
- delwin(menubar);
- menubar = NULL;
+VOID menubar_refresh(struct window *w)
+{
+ ASSERT(w != NULL);
+
+ wrefresh(w);
}