diff options
Diffstat (limited to 'UefiMonitorTest/tests')
-rw-r--r-- | UefiMonitorTest/tests/Grayscale.c | 43 | ||||
-rw-r--r-- | UefiMonitorTest/tests/Grayscale.h | 33 |
2 files changed, 76 insertions, 0 deletions
diff --git a/UefiMonitorTest/tests/Grayscale.c b/UefiMonitorTest/tests/Grayscale.c new file mode 100644 index 0000000..eb1bf9a --- /dev/null +++ b/UefiMonitorTest/tests/Grayscale.c @@ -0,0 +1,43 @@ +#include "Grayscale.h" + +VOID +GrayscaleTestInit ( + IN UMT_CONTEXT *Ctx + ) +{ + +} + +VOID +GrayscaleTestDoit ( + IN UMT_CONTEXT *Ctx + ) +{ + +} + +VOID +GrayscaleTestTip ( + IN UMT_CONTEXT *Ctx + ) +{ + +} + +VOID +GrayscaleTestChangeParam ( + IN UMT_CONTEXT *Ctx, + IN INT8 ParamStep + ) +{ + +} + +VOID +GrayscaleTestChangeValue ( + IN UMT_CONTEXT *Ctx, + IN INT8 ValueStep + ) +{ + +} diff --git a/UefiMonitorTest/tests/Grayscale.h b/UefiMonitorTest/tests/Grayscale.h new file mode 100644 index 0000000..4763b92 --- /dev/null +++ b/UefiMonitorTest/tests/Grayscale.h @@ -0,0 +1,33 @@ +#ifndef UMT_GRAYSCALE_TEST_H +#define UMT_GRAYSCALE_TEST_H + +#include "UefiMonitorTest.h" + +VOID +GrayscaleTestInit ( + IN UMT_CONTEXT *Ctx + ); + +VOID +GrayscaleTestDoit ( + IN UMT_CONTEXT *Ctx + ); + +VOID +GrayscaleTestTip ( + IN UMT_CONTEXT *Ctx + ); + +VOID +GrayscaleTestChangeParam ( + IN UMT_CONTEXT *Ctx, + IN INT8 ParamStep + ); + +VOID +GrayscaleTestChangeValue ( + IN UMT_CONTEXT *Ctx, + IN INT8 ValueStep + ); + +#endif /* UMT_GRAYSCALE_TEST_H */ |