diff options
author | Eric Dong <eric.dong@intel.com> | 2015-05-06 10:39:26 +0000 |
---|---|---|
committer | ydong10 <ydong10@Edk2> | 2015-05-06 10:39:26 +0000 |
commit | 7cc80bfd7c250e713d8909decb2f5bb3ba30f054 (patch) | |
tree | 6847f253e286ebd3b44e160500776cf7f80b6c5f /MdePkg/Include/Uefi | |
parent | 5d3776166198cad1d9274d6bc76d47c15188a24e (diff) | |
download | edk2-platforms-7cc80bfd7c250e713d8909decb2f5bb3ba30f054.tar.xz |
MdePkg: Add Regular Expression Protocol and match2 opcode definition.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Eric Dong <eric.dong@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
Reviewed-by: Samer El-Haj-Mahmoud <samer.el-haj-mahmoud@hp.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17339 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Uefi')
-rw-r--r-- | MdePkg/Include/Uefi/UefiInternalFormRepresentation.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MdePkg/Include/Uefi/UefiInternalFormRepresentation.h b/MdePkg/Include/Uefi/UefiInternalFormRepresentation.h index 70b037488d..4f9549dfcc 100644 --- a/MdePkg/Include/Uefi/UefiInternalFormRepresentation.h +++ b/MdePkg/Include/Uefi/UefiInternalFormRepresentation.h @@ -780,6 +780,7 @@ typedef union { #define EFI_IFR_MODAL_TAG_OP 0x61
#define EFI_IFR_REFRESH_ID_OP 0x62
#define EFI_IFR_WARNING_IF_OP 0x63
+#define EFI_IFR_MATCH2_OP 0x64
//
// Definitions of IFR Standard Headers
@@ -1399,6 +1400,11 @@ typedef struct _EFI_IFR_MATCH { EFI_IFR_OP_HEADER Header;
} EFI_IFR_MATCH;
+typedef struct _EFI_IFR_MATCH2 {
+ EFI_IFR_OP_HEADER Header;
+ EFI_GUID SyntaxType;
+} EFI_IFR_MATCH2;
+
typedef struct _EFI_IFR_MULTIPLY {
EFI_IFR_OP_HEADER Header;
} EFI_IFR_MULTIPLY;
|