diff options
-rw-r--r-- | Library/UefiShellUfmCommandLib/filemanager.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Library/UefiShellUfmCommandLib/filemanager.h b/Library/UefiShellUfmCommandLib/filemanager.h new file mode 100644 index 0000000..2c9fcbc --- /dev/null +++ b/Library/UefiShellUfmCommandLib/filemanager.h @@ -0,0 +1,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 */ |