mirror of https://github.com/acidanthera/audk.git
add some definitions about HII
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2914 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
1d6d9e7ef0
commit
61a30832e1
|
@ -26,6 +26,8 @@
|
|||
|
||||
#include <PiDxe.h>
|
||||
|
||||
#include <Protocol/FrameworkHii.h>
|
||||
|
||||
#define EFI_FORM_CALLBACK_PROTOCOL_GUID \
|
||||
{ \
|
||||
0xf3e4543d, 0xcf35, 0x6cef, {0x35, 0xc4, 0x4f, 0xe6, 0x34, 0x4d, 0xfc, 0x54 } \
|
||||
|
@ -67,6 +69,7 @@ typedef struct {
|
|||
//
|
||||
} EFI_IFR_DATA_ARRAY;
|
||||
|
||||
|
||||
typedef union {
|
||||
EFI_IFR_DATA_ARRAY DataArray; // Primarily used by those who call back to their drivers and use HII as a repository
|
||||
EFI_IFR_PACKET DataPacket; // Primarily used by those which do not use HII as a repository
|
||||
|
|
|
@ -414,6 +414,18 @@ typedef struct _EFI_HII_VARIABLE_PACK_LIST {
|
|||
EFI_HII_VARIABLE_PACK *VariablePack;
|
||||
} EFI_HII_VARIABLE_PACK_LIST;
|
||||
|
||||
typedef struct {
|
||||
EFI_HII_IFR_PACK *IfrData;
|
||||
EFI_HII_STRING_PACK *StringData;
|
||||
} EFI_IFR_PACKET;
|
||||
|
||||
typedef struct {
|
||||
UINTN LeftColumn;
|
||||
UINTN RightColumn;
|
||||
UINTN TopRow;
|
||||
UINTN BottomRow;
|
||||
} EFI_SCREEN_DESCRIPTOR;
|
||||
|
||||
#pragma pack()
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue