diff options
Diffstat (limited to 'UefiMonitorTest/MainMenu.h')
-rw-r--r-- | UefiMonitorTest/MainMenu.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/UefiMonitorTest/MainMenu.h b/UefiMonitorTest/MainMenu.h new file mode 100644 index 0000000..33d7813 --- /dev/null +++ b/UefiMonitorTest/MainMenu.h @@ -0,0 +1,31 @@ +#ifndef UMT_MAIN_MENU_H +#define UMT_MAIN_MENU_H + +#include "UefiMonitorTest.h" + +VOID +MainMenuInit ( + IN UMT_CONTEXT *Ctx + ); + +VOID +MainMenuDoit ( + IN UMT_CONTEXT *Ctx + ); + +VOID +MainMenuTip ( + IN UMT_CONTEXT *Ctx + ); + +VOID +MainMenuKeyRight ( + IN UMT_CONTEXT *Ctx + ); + +VOID +MainMenuKeyLeft ( + IN UMT_CONTEXT *Ctx + ); + +#endif /* UMT_MAIN_MENU_H */ |