mirror of https://github.com/acidanthera/audk.git
Add new "refresh event group" opcode.
Signed-off-by: ydong10 Reviewed-by: lgao4 git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11765 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
b00964a999
commit
dfc66bb938
|
@ -770,6 +770,7 @@ typedef union {
|
|||
#define EFI_IFR_GUID_OP 0x5F
|
||||
#define EFI_IFR_SECURITY_OP 0x60
|
||||
#define EFI_IFR_MODAL_TAG_OP 0x61
|
||||
#define EFI_IFR_REFRESH_ID_OP 0x62
|
||||
|
||||
//
|
||||
// Definitions of IFR Standard Headers
|
||||
|
@ -1147,6 +1148,11 @@ typedef struct _EFI_IFR_GUID {
|
|||
//Optional Data Follows
|
||||
} EFI_IFR_GUID;
|
||||
|
||||
typedef struct _EFI_IFR_REFRESH_ID {
|
||||
EFI_IFR_OP_HEADER Header;
|
||||
EFI_GUID RefreshEventGroupId;
|
||||
} EFI_IFR_REFRESH_ID;
|
||||
|
||||
typedef struct _EFI_IFR_DUP {
|
||||
EFI_IFR_OP_HEADER Header;
|
||||
} EFI_IFR_DUP;
|
||||
|
|
Loading…
Reference in New Issue