diff options
author | Joursoir <chat@joursoir.net> | 2022-03-27 10:17:56 +0300 |
---|---|---|
committer | Joursoir <chat@joursoir.net> | 2022-03-27 10:17:56 +0300 |
commit | 3a21582ba3d4c4eac6401114484c0a8ae3bc5c16 (patch) | |
tree | dd4e6a017d993388410f05d27e6824766231156a | |
parent | 507d749384846c2302c4749729ad2cc156d8cc12 (diff) | |
download | umt-3a21582ba3d4c4eac6401114484c0a8ae3bc5c16.tar.gz umt-3a21582ba3d4c4eac6401114484c0a8ae3bc5c16.tar.bz2 umt-3a21582ba3d4c4eac6401114484c0a8ae3bc5c16.zip |
main: add structure for pixel color
-rw-r--r-- | UefiMonitorTest/UefiMonitorTest.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/UefiMonitorTest/UefiMonitorTest.h b/UefiMonitorTest/UefiMonitorTest.h index eb49249..1199e78 100644 --- a/UefiMonitorTest/UefiMonitorTest.h +++ b/UefiMonitorTest/UefiMonitorTest.h @@ -2,6 +2,13 @@ #define UEFI_MONITOR_TEST_H typedef struct { + UINT8 Blue; + UINT8 Green; + UINT8 Red; + UINT8 Reserved; +} GRAPHICS_PIXEL_COLOR; + +typedef struct { /// /// The EFI_GRAPHICS_OUTPUT_PROTOCOL instance. /// |