1.Updated EFI_FVB_ATTRIBUTES to EFI_FVB_ATTRIBUTES_2 to follow PI spec.

2.Changed parameter FvHeader into DriverName to follow PI spec.
3.Updated DXE services functions header to follow PI spec.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5796 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
vanjeff
2008-09-03 08:34:34 +00:00
parent d667c17cd4
commit 4ba967e79a
5 changed files with 226 additions and 105 deletions

View File

@@ -103,7 +103,7 @@ EFI_STATUS
EFIAPI
EfiFvbGetVolumeAttributes (
IN UINTN Instance,
OUT EFI_FVB_ATTRIBUTES *Attributes
OUT EFI_FVB_ATTRIBUTES_2 *Attributes
);
@@ -112,7 +112,7 @@ EfiFvbGetVolumeAttributes (
input parameter, and returns the new setting of the volume.
@param[in] Instance The FV instance.
@param[in, out]Attributes On input, it is a pointer to EFI_FVB_ATTRIBUTES
@param[in, out]Attributes On input, it is a pointer to EFI_FVB_ATTRIBUTES_2
containing the desired firmware volume settings.
On successful return, it contains the new settings
of the firmware volume.
@@ -125,7 +125,7 @@ EFI_STATUS
EFIAPI
EfiFvbSetVolumeAttributes (
IN UINTN Instance,
IN OUT EFI_FVB_ATTRIBUTES *Attributes
IN OUT EFI_FVB_ATTRIBUTES_2 *Attributes
);