blob: 85e1ce72994abe5eaf73a24b39f6a15f78b72fbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#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;
struct window;
struct window *init_menubar(struct screen *scr);
VOID free_menubar(struct window *w);
VOID menubar_refresh(struct window *w);
#endif /* UFM_MENU_BAR_H */
|