diff options
author | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-02-25 10:10:59 +0000 |
---|---|---|
committer | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-02-25 10:10:59 +0000 |
commit | 2573712e0132deac7591f9ed5e2423c5e61e5af6 (patch) | |
tree | 8b213960d0df7d73510f3cadd48218667350ef76 /MdePkg | |
parent | 234980f6e935a51fdafecb9930b4a2ecbf47b727 (diff) | |
download | edk2-platforms-2573712e0132deac7591f9ed5e2423c5e61e5af6.tar.xz |
Enhance SetupBrowser to support new UEFI HiiFormMap feature
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10069 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg')
-rw-r--r-- | MdePkg/Include/Uefi/UefiInternalFormRepresentation.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/MdePkg/Include/Uefi/UefiInternalFormRepresentation.h b/MdePkg/Include/Uefi/UefiInternalFormRepresentation.h index 5cfe91a44c..1c900c91c2 100644 --- a/MdePkg/Include/Uefi/UefiInternalFormRepresentation.h +++ b/MdePkg/Include/Uefi/UefiInternalFormRepresentation.h @@ -715,8 +715,8 @@ typedef union { #define EFI_IFR_VERSION_OP 0x28
#define EFI_IFR_END_OP 0x29
#define EFI_IFR_MATCH_OP 0x2A
-#define EFI_IFR_SET_OP 0x2C
#define EFI_IFR_GET_OP 0x2B
+#define EFI_IFR_SET_OP 0x2C
#define EFI_IFR_READ_OP 0x2D
#define EFI_IFR_WRITE_OP 0x2E
#define EFI_IFR_EQUAL_OP 0x2F
@@ -1459,7 +1459,7 @@ typedef struct _EFI_IFR_FORM_MAP { ///
/// One or more configuration method's name and unique identifier.
///
- EFI_IFR_FORM_MAP_METHOD Methods[1];
+ // EFI_IFR_FORM_MAP_METHOD Methods[];
} EFI_IFR_FORM_MAP;
typedef struct _EFI_IFR_SET {
@@ -1483,6 +1483,10 @@ typedef struct _EFI_IFR_SET { ///
UINT16 VarOffset;
} VarStoreInfo;
+ ///
+ /// Specifies the type used for storage.
+ ///
+ UINT8 VarStoreType;
} EFI_IFR_SET;
typedef struct _EFI_IFR_GET {
|