mirror of https://github.com/acidanthera/audk.git
Add new "Modal form" opcode.
Signed-off-by: ydong10 Reviewed-by: lgao4 git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11763 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
4f0779023c
commit
26a65e5c80
|
@ -769,6 +769,7 @@ typedef union {
|
|||
#define EFI_IFR_CATENATE_OP 0x5E
|
||||
#define EFI_IFR_GUID_OP 0x5F
|
||||
#define EFI_IFR_SECURITY_OP 0x60
|
||||
#define EFI_IFR_MODAL_TAG_OP 0x61
|
||||
|
||||
//
|
||||
// Definitions of IFR Standard Headers
|
||||
|
@ -873,6 +874,10 @@ typedef struct _EFI_IFR_IMAGE {
|
|||
EFI_IMAGE_ID Id;
|
||||
} EFI_IFR_IMAGE;
|
||||
|
||||
typedef struct _EFI_IFR_MODAL {
|
||||
EFI_IFR_OP_HEADER Header;
|
||||
} EFI_IFR_MODAL;
|
||||
|
||||
typedef struct _EFI_IFR_LOCKED {
|
||||
EFI_IFR_OP_HEADER Header;
|
||||
} EFI_IFR_LOCKED;
|
||||
|
|
Loading…
Reference in New Issue