aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu-bar.h
diff options
context:
space:
mode:
authorJoursoir <chat@joursoir.net>2021-11-04 03:28:28 +0300
committerJoursoir <chat@joursoir.net>2021-11-04 03:28:28 +0300
commit2498e52020252a6f915c6c5242509fe06e6b02e8 (patch)
treef508be0629e2a6617e772449e6caba4ca4f435b3 /src/menu-bar.h
parent854718a302d46a588bd2aa1a62664569b6f41553 (diff)
downloadufm-2498e52020252a6f915c6c5242509fe06e6b02e8.tar.gz
ufm-2498e52020252a6f915c6c5242509fe06e6b02e8.tar.bz2
ufm-2498e52020252a6f915c6c5242509fe06e6b02e8.zip
implement the menu bar
Diffstat (limited to 'src/menu-bar.h')
-rw-r--r--src/menu-bar.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/menu-bar.h b/src/menu-bar.h
new file mode 100644
index 0000000..9012f9f
--- /dev/null
+++ b/src/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 */