diff options
author | Joursoir <chat@joursoir.net> | 2022-04-21 21:42:25 +0300 |
---|---|---|
committer | Joursoir <chat@joursoir.net> | 2022-04-21 21:42:25 +0300 |
commit | 87e0417eaf431d0d1bab9537bd9a9ed33c91e5d3 (patch) | |
tree | 9079001a51d124126ba717578b10ca62513b3024 /UefiMonitorTest/UefiMonitorTest.h | |
parent | ce8f793403d4b152425c3dbbf90c44c24a4be57a (diff) | |
download | umt-87e0417eaf431d0d1bab9537bd9a9ed33c91e5d3.tar.gz umt-87e0417eaf431d0d1bab9537bd9a9ed33c91e5d3.tar.bz2 umt-87e0417eaf431d0d1bab9537bd9a9ed33c91e5d3.zip |
main: add a mouse context to a graphics context
Diffstat (limited to 'UefiMonitorTest/UefiMonitorTest.h')
-rw-r--r-- | UefiMonitorTest/UefiMonitorTest.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/UefiMonitorTest/UefiMonitorTest.h b/UefiMonitorTest/UefiMonitorTest.h index 32214d6..3f82246 100644 --- a/UefiMonitorTest/UefiMonitorTest.h +++ b/UefiMonitorTest/UefiMonitorTest.h @@ -56,6 +56,14 @@ typedef struct { /// Amount of bytes you should skip to go one pixel down. /// UINT32 Pitch; + // + // A mouse support. + // + BOOLEAN MouseSupported; + // + // The MouseInterface instance. + // + EFI_SIMPLE_POINTER_PROTOCOL *MouseInterface; } GRAPHICS_CONTEXT; #endif /* UEFI_MONITOR_TEST_H */ |