diff options
author | Konstantin Aladyshev <aladyshev22@gmail.com> | 2024-02-21 17:05:52 +0300 |
---|---|---|
committer | Konstantin Aladyshev <aladyshev22@gmail.com> | 2024-02-21 17:05:52 +0300 |
commit | a8123426fa6619d77c9ee5307e7d7d1713635c3a (patch) | |
tree | b524045630af9b36319dad98d7345ac3c87211ce /UefiLessonsPkg/HIIFormCallbackDebug/Data.h | |
parent | 6cae397824509b7a207d1110f34265a788e145fc (diff) | |
download | UEFI-Lessons-a8123426fa6619d77c9ee5307e7d7d1713635c3a.tar.gz UEFI-Lessons-a8123426fa6619d77c9ee5307e7d7d1713635c3a.tar.bz2 UEFI-Lessons-a8123426fa6619d77c9ee5307e7d7d1713635c3a.zip |
Add HIIFormCallbackDebug source
Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
Diffstat (limited to 'UefiLessonsPkg/HIIFormCallbackDebug/Data.h')
-rw-r--r-- | UefiLessonsPkg/HIIFormCallbackDebug/Data.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/UefiLessonsPkg/HIIFormCallbackDebug/Data.h b/UefiLessonsPkg/HIIFormCallbackDebug/Data.h new file mode 100644 index 0000000..8df01aa --- /dev/null +++ b/UefiLessonsPkg/HIIFormCallbackDebug/Data.h @@ -0,0 +1,23 @@ +#ifndef _DATA_H_ +#define _DATA_H_ + +#define FORMSET_GUID {0xf8f0d09a, 0xbc44, 0x4490, {0xb1, 0x7a, 0xdd, 0xf0, 0xe5, 0xdc, 0x41, 0x7f}} +#define DATAPATH_GUID {0xfb821964, 0xacb4, 0x437b, {0x9f, 0xe6, 0x66, 0xaa, 0x7a, 0xd7, 0xc5, 0xd8}} +#define STORAGE_GUID {0x37807592, 0x733a, 0x4f1b, {0x95, 0x57, 0xf2, 0x2a, 0xf7, 0x43, 0xe8, 0xc2}} + +#define CHECKBOX_QUESTION_ID 0x5555 +#define NUMERIC_QUESTION_ID 0x4444 + +#pragma pack(1) +typedef struct { + UINT8 CheckboxValue; + UINT16 NumericValue; + CHAR16 StringValue[11]; + EFI_HII_DATE DateValue; + EFI_HII_TIME TimeValue; + UINT8 OneOfValue; + UINT8 OrderedListValue[3]; +} VARIABLE_STRUCTURE; +#pragma pack() + +#endif |