diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-07-18 17:30:13 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-07-18 17:30:13 +0000 |
commit | dcab253b057f81236757d34a7222ad58fa478f5d (patch) | |
tree | a9aa86e23ac7de4cdf10fdaea2cd9dc72189d285 /IntelFrameworkPkg/Include/Protocol | |
parent | ca451dba1056b0daa50dcbe2af4363cabd952b52 (diff) | |
download | edk2-platforms-dcab253b057f81236757d34a7222ad58fa478f5d.tar.xz |
1) Add _MSC_VER judgment for usage of #pragma intrinsic
2) Change EFI_FVB_ATTRIBUTE to EFI_FVB2_ATTRIBUTE, As Zimmer, Vincent’s PI1.0 errata document said, in PI we need use EFI_FVB2_ATTRIBUTE to differ the specification change.
3) Remove duplicate definition of SERIAL_MODE, PARALLEL_MODE in Include\Framework\Legacy16.h
4) Remove EFI_FV_FILE_ATTRIB_FIXED and EFI_FV_FILE_ATTRIB_ALIGNMENT from IntelFrameworkPkg\Include\Protocol\FirmwareVolume.h, because they defined in PI specification.
5) Remove EFI_FORM_LABEL from IntelFrameworkPkg\Include\Protocol\HiiFramework.h
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3333 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'IntelFrameworkPkg/Include/Protocol')
-rw-r--r-- | IntelFrameworkPkg/Include/Protocol/FirmwareVolume.h | 4 | ||||
-rw-r--r-- | IntelFrameworkPkg/Include/Protocol/HiiFramework.h | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/IntelFrameworkPkg/Include/Protocol/FirmwareVolume.h b/IntelFrameworkPkg/Include/Protocol/FirmwareVolume.h index d8fa30bd42..5f789e1099 100644 --- a/IntelFrameworkPkg/Include/Protocol/FirmwareVolume.h +++ b/IntelFrameworkPkg/Include/Protocol/FirmwareVolume.h @@ -115,10 +115,6 @@ EFI_STATUS IN OUT EFI_FV_ATTRIBUTES *Attributes
);
-typedef UINT32 EFI_FV_FILE_ATTRIBUTES;
-
-#define EFI_FV_FILE_ATTRIB_ALIGNMENT 0x0000001F
-
/**
Read the requested file (NameGuid) and returns data in Buffer.
diff --git a/IntelFrameworkPkg/Include/Protocol/HiiFramework.h b/IntelFrameworkPkg/Include/Protocol/HiiFramework.h index 4a2237852f..56f701ec8d 100644 --- a/IntelFrameworkPkg/Include/Protocol/HiiFramework.h +++ b/IntelFrameworkPkg/Include/Protocol/HiiFramework.h @@ -77,7 +77,6 @@ typedef struct _EFI_HII_PROTOCOL EFI_HII_PROTOCOL; //
// The following types are currently defined:
//
-typedef UINT16 EFI_FORM_ID;
typedef UINT16 EFI_FORM_LABEL;
#pragma pack(1)
|