blob: 9012f9f25ebb4c73fdbdc8a9675020e7406c3c58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 */
|