diff options
author | Joursoir <chat@joursoir.net> | 2022-05-04 20:40:17 +0300 |
---|---|---|
committer | Joursoir <chat@joursoir.net> | 2022-05-04 20:40:49 +0300 |
commit | f979707f1edfc6196119061e733ff1a7c143c795 (patch) | |
tree | 0ac62dd1e2ddd054a26b93e4174a00b38bab99ab /UefiMonitorTest/UefiMonitorTest.c | |
parent | 7e0ef4f0692e4b89fa3bd763900cd38bd56c0187 (diff) | |
download | umt-f979707f1edfc6196119061e733ff1a7c143c795.tar.gz umt-f979707f1edfc6196119061e733ff1a7c143c795.tar.bz2 umt-f979707f1edfc6196119061e733ff1a7c143c795.zip |
add solid colors test
Diffstat (limited to 'UefiMonitorTest/UefiMonitorTest.c')
-rw-r--r-- | UefiMonitorTest/UefiMonitorTest.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/UefiMonitorTest/UefiMonitorTest.c b/UefiMonitorTest/UefiMonitorTest.c index 29efa8d..a180e63 100644 --- a/UefiMonitorTest/UefiMonitorTest.c +++ b/UefiMonitorTest/UefiMonitorTest.c @@ -11,10 +11,12 @@ #include "UefiMonitorTest.h" #include "MainMenu.h" #include "SettingsMenu.h" +#include "tests/SolidColors.h" STATIC CONST UMT_STATE_ACTIONS mStateActions[UMT_STATE_END] = { { MainMenuInit, MainMenuDoit, MainMenuTip, MainMenuChangeParam, MainMenuChangeValue }, - { SettingsMenuInit, SettingsMenuDoit, SettingsMenuTip, SettingsChangeParam, SettingsMenuChangeValue } + { SettingsMenuInit, SettingsMenuDoit, SettingsMenuTip, SettingsChangeParam, SettingsMenuChangeValue }, + { SolidColorsTestInit, SolidColorsTestDoit, SolidColorsTestTip, SolidColorsTestChangeParam, SolidColorsTestChangeValue } }; EFI_HII_HANDLE gUmtHiiHandle = NULL; |