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
This commit is contained in:
klu2
2008-10-09 18:23:56 +00:00
parent 3354353d4d
commit a4e0b060c6
8 changed files with 85 additions and 160 deletions

View File

@@ -263,9 +263,9 @@ EFI_STATUS
//
// EFI_LBA_LIST_TERMINATOR
//
///
/// EFI_LBA_LIST_TERMINATOR
///
#define EFI_LBA_LIST_TERMINATOR 0xFFFFFFFFFFFFFFFFULL
@@ -322,8 +322,6 @@ EFI_STATUS
...
);
/**
@par Protocol Description:
The Firmware Volume Block Protocol is the low-level interface
@@ -347,33 +345,6 @@ EFI_STATUS
Firmware Volume Protocol abstracts the file system that is
used to format the firmware volume and the hardware
device-hardening features that may be present.
@param GetPhysicalAddress Retrieves the memory-mapped
address of the firmware volume.
@param GetBlockSize Retrieves the size for a specific block.
Also returns the number of consecutive
similarly sized blocks.
@param Read Reads n bytes into a buffer from the firmware
volume hardware.
@param Write Writes n bytes from a buffer into the firmware
volume hardware.
@param EraseBlocks Erases specified block(s) and sets all
values as indicated by the
EFI_FVB_ERASE_POLARITY bit. See the
EraseBlocks() function description. Type
EFI_FVB_ERASE_POLARITY is defined in
EFI_FIRMWARE_VOLUME_HEADER. ParentHandle
Handle of the parent firmware volume.
@param GetAttributes Retrieves the current volume attributes.
@param SetAttributes Sets the current volume attributes.
**/
struct _EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL {
EFI_FVB_GET_ATTRIBUTES GetAttributes;
@@ -383,6 +354,9 @@ struct _EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL {
EFI_FVB_READ Read;
EFI_FVB_WRITE Write;
EFI_FVB_ERASE_BLOCKS EraseBlocks;
///
/// Handle of the parent firmware volume.
///
EFI_HANDLE ParentHandle;
};