blob: 2c9fcbc815c5a25626080ff6e7919c29aba0ad7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef UFM_FILE_MANAGER_H
#define UFM_FILE_MANAGER_H
#include <Uefi.h>
struct screen;
struct window;
struct panel_ctx;
struct fm_context {
struct screen *scr;
struct window *menubar, *cmdbar;
struct panel_ctx *left, *right;
struct panel_ctx *curpanel;
BOOLEAN flag_run;
};
extern struct fm_context fm_ctx;
#endif /* UFM_FILE_MANAGER_H */
|