diff options
author | gdong1 <gdong1@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-01-04 08:06:07 +0000 |
---|---|---|
committer | gdong1 <gdong1@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-01-04 08:06:07 +0000 |
commit | 409f118c84e20b8ca4287dea403585d319b7466c (patch) | |
tree | 2f4c11655bd30ff24aea1e2123566ef2b425a26f /IntelFrameworkPkg/Include/Protocol | |
parent | 3a306c100673a9be5c8481361671b7ed5e2c4495 (diff) | |
download | edk2-platforms-409f118c84e20b8ca4287dea403585d319b7466c.tar.xz |
Replace some CopyMem() for GUID copy with CopyGuid().
Replace some gBS->FreePool() with FreePool().
Add EFIAPI modifier.
Removed inconsistent OPTIONAL modifier.
Coding style issue fix.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7176 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'IntelFrameworkPkg/Include/Protocol')
-rw-r--r-- | IntelFrameworkPkg/Include/Protocol/FrameworkHii.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/IntelFrameworkPkg/Include/Protocol/FrameworkHii.h b/IntelFrameworkPkg/Include/Protocol/FrameworkHii.h index a71038db0d..1b22774367 100644 --- a/IntelFrameworkPkg/Include/Protocol/FrameworkHii.h +++ b/IntelFrameworkPkg/Include/Protocol/FrameworkHii.h @@ -86,12 +86,15 @@ typedef UINT16 FRAMEWORK_EFI_HII_HANDLE; //
// The following types are currently defined:
-// EFI_FROM_ID has been defined in UEFI spec.
+// EFI_FORM_ID has been defined in UEFI spec.
//
typedef UINT16 EFI_FORM_LABEL;
#pragma pack(1)
+//
+// The header found at the start of each package.
+//
typedef struct {
UINT32 Length;
UINT16 Type;
|