Change FRAMEWORK_EFI_HII_CALLBACK_PACKET back to EFI_HII_CALLBACK_PACKET to match Framework HII 0.92 Specification

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8741 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
mdkinney 2009-07-03 20:14:12 +00:00
parent 1ef3c7d747
commit 2cec3ea527
1 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ typedef union {
FRAMEWORK_EFI_IFR_DATA_ARRAY DataArray; ///< Primarily used by those who call back to their drivers and use HII as a repository
FRAMEWORK_EFI_IFR_PACKET DataPacket; ///< Primarily used by those which do not use HII as a repository
CHAR16 String[1]; ///< If returning an error - fill the string with null-terminated contents
} FRAMEWORK_EFI_HII_CALLBACK_PACKET;
} EFI_HII_CALLBACK_PACKET;
typedef struct {
FRAMEWORK_EFI_IFR_OP_HEADER Header;
@ -171,7 +171,7 @@ EFI_STATUS
IN EFI_FORM_CALLBACK_PROTOCOL *This,
IN UINT16 KeyValue,
IN FRAMEWORK_EFI_IFR_DATA_ARRAY *Data,
OUT FRAMEWORK_EFI_HII_CALLBACK_PACKET **Packet
OUT EFI_HII_CALLBACK_PACKET **Packet
);
/**