diff options
author | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-09-03 08:34:34 +0000 |
---|---|---|
committer | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-09-03 08:34:34 +0000 |
commit | 4ba967e79af4c240f2e3adeb19f187e964e1f2fd (patch) | |
tree | 9590c234674b7c27f6f8b4c7b635c23d5e33167d /MdePkg/Include/Protocol | |
parent | d667c17cd45cc0809670ae3eaa5218fbabf19ea2 (diff) | |
download | edk2-platforms-4ba967e79af4c240f2e3adeb19f187e964e1f2fd.tar.xz |
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
Diffstat (limited to 'MdePkg/Include/Protocol')
-rw-r--r-- | MdePkg/Include/Protocol/FirmwareVolumeBlock.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/MdePkg/Include/Protocol/FirmwareVolumeBlock.h b/MdePkg/Include/Protocol/FirmwareVolumeBlock.h index c7e0c2f769..0eaf31a1ed 100644 --- a/MdePkg/Include/Protocol/FirmwareVolumeBlock.h +++ b/MdePkg/Include/Protocol/FirmwareVolumeBlock.h @@ -31,9 +31,9 @@ typedef struct _EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL EFI_FIRMWARE_VOLUME_BLOCK_PRO @param This Indicates the EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL instance.
- @param Attributes Pointer to EFI_FVB_ATTRIBUTES in which the
+ @param Attributes Pointer to EFI_FVB_ATTRIBUTES_2 in which the
attributes and current settings are
- returned. Type EFI_FVB_ATTRIBUTES is defined
+ returned. Type EFI_FVB_ATTRIBUTES_2 is defined
in EFI_FIRMWARE_VOLUME_HEADER.
@retval EFI_SUCCESS The firmware volume attributes were
@@ -44,7 +44,7 @@ typedef EFI_STATUS
(EFIAPI * EFI_FVB_GET_ATTRIBUTES)(
IN CONST EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *This,
- OUT EFI_FVB_ATTRIBUTES *Attributes
+ OUT EFI_FVB_ATTRIBUTES_2 *Attributes
);
@@ -55,11 +55,11 @@ EFI_STATUS @param This Indicates the EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL instance.
@param Attributes On input, Attributes is a pointer to
- EFI_FVB_ATTRIBUTES that contains the
+ EFI_FVB_ATTRIBUTES_2 that contains the
desired firmware volume settings. On
successful return, it contains the new
settings of the firmware volume. Type
- EFI_FVB_ATTRIBUTES is defined in
+ EFI_FVB_ATTRIBUTES_2 is defined in
EFI_FIRMWARE_VOLUME_HEADER.
@retval EFI_SUCCESS The firmware volume attributes were returned.
@@ -74,7 +74,7 @@ typedef EFI_STATUS
(EFIAPI * EFI_FVB_SET_ATTRIBUTES)(
IN CONST EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *This,
- IN OUT EFI_FVB_ATTRIBUTES *Attributes
+ IN OUT EFI_FVB_ATTRIBUTES_2 *Attributes
);
|