diff options
Diffstat (limited to 'Library/UefiShellUfmCommandLib/menu-bar.h')
-rw-r--r-- | Library/UefiShellUfmCommandLib/menu-bar.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/UefiShellUfmCommandLib/menu-bar.h b/Library/UefiShellUfmCommandLib/menu-bar.h new file mode 100644 index 0000000..9012f9f --- /dev/null +++ b/Library/UefiShellUfmCommandLib/menu-bar.h @@ -0,0 +1,17 @@ +#ifndef UFM_MENU_BAR_H +#define UFM_MENU_BAR_H + +/* + * Menu bar: + * Located on the first line, occupies its entire length. + * At the moment, nothing is planned here, a reserve for the future +*/ + +#include <Uefi.h> + +struct screen; + +BOOLEAN init_menubar(struct screen *scr); +VOID free_menubar(VOID); + +#endif /* UFM_MENU_BAR_H */ |