diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-10-09 18:23:56 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-10-09 18:23:56 +0000 |
commit | a4e0b060c6484fd2576fcd906a7b0d4519053c52 (patch) | |
tree | 9023c5cbc98e068bf97254efb084ac5ca886ab97 /MdePkg/Include/Protocol/FirmwareVolume2.h | |
parent | 3354353d4d82fb12c073564ab41099ca75d02839 (diff) | |
download | edk2-platforms-a4e0b060c6484fd2576fcd906a7b0d4519053c52.tar.xz |
1, Fix doxygen comment for structure and macro
2, Add missing macro - EfiBltVideoToVideo
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6094 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Protocol/FirmwareVolume2.h')
-rw-r--r-- | MdePkg/Include/Protocol/FirmwareVolume2.h | 39 |
1 files changed, 10 insertions, 29 deletions
diff --git a/MdePkg/Include/Protocol/FirmwareVolume2.h b/MdePkg/Include/Protocol/FirmwareVolume2.h index 1d22bbeeea..5961c8b741 100644 --- a/MdePkg/Include/Protocol/FirmwareVolume2.h +++ b/MdePkg/Include/Protocol/FirmwareVolume2.h @@ -705,35 +705,6 @@ EFI_STATUS for example. This level of firmware volume implementation
detail is not visible to the consumers of the Firmware Volume
Protocol.
-
- @param GetVolumeAttributes Retrieves volume capabilities
- and current settings.
-
- @param SetVolumeAttributes Modifies the current settings of
- the firmware volume.
-
- @param ReadFile Reads an entire file from the firmware
- volume.
-
- @param ReadSection Reads a single section from a file into
- a buffer.
-
- @param WriteFile Writes an entire file into the firmware
- volume.
-
- @param GetNextFile Provides service to allow searching the
- firmware volume.
-
- @param KeySize Data field that indicates the size in bytes
- of the Key input buffer for the
- GetNextFile() API.
-
- @param ParentHandle Handle of the parent firmware volume.
-
- @param GetInfo Gets the requested file or volume
- information.
-
- @param SetInfo Sets the requested file information.
**/
struct _EFI_FIRMWARE_VOLUME2_PROTOCOL {
EFI_FV_GET_ATTRIBUTES GetVolumeAttributes;
@@ -742,7 +713,17 @@ struct _EFI_FIRMWARE_VOLUME2_PROTOCOL { EFI_FV_READ_SECTION ReadSection;
EFI_FV_WRITE_FILE WriteFile;
EFI_FV_GET_NEXT_FILE GetNextFile;
+
+ ///
+ /// Data field that indicates the size in bytes
+ /// of the Key input buffer for the
+ /// GetNextFile() API.
+ ///
UINT32 KeySize;
+
+ ///
+ /// Handle of the parent firmware volume.
+ ///
EFI_HANDLE ParentHandle;
EFI_FV_GET_INFO GetInfo;
EFI_FV_SET_INFO SetInfo;
|