Update MdePkg/Include/Ppi according to code review comments.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5818 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
xli24
2008-09-04 09:15:21 +00:00
parent e6422a369a
commit dafa11b191
9 changed files with 414 additions and 473 deletions

View File

@@ -1,5 +1,5 @@
/** @file
The file descript the PPI which notifies other drivers
The file describes the PPI which notifies other drivers
of the PEIM being initialized by the PEI Dispatcher.
Copyright (c) 2006 - 2008, Intel Corporation
@@ -26,23 +26,24 @@
typedef struct _EFI_PEI_LOADED_IMAGE_PPI EFI_PEI_LOADED_IMAGE_PPI;
/**
@par Ppi Description:
This interface is installed by the PEI Dispatcher after the image has been
loaded and after all security checks have been performed,
to notify other PEIMs of the files which are being loaded.
@param ImageAddress Address of the image at the address where it will be executed.
@param ImageSize Size of the image as it will be executed.
@param FileHandle File handle from which the image was loaded. Can be NULL,
indicating the image was not loaded from a handle.
**/
///
/// This interface is installed by the PEI Dispatcher after the image has been
/// loaded and after all security checks have been performed,
/// to notify other PEIMs of the files which are being loaded.
///
struct _EFI_PEI_LOADED_IMAGE_PPI {
///
/// Address of the image at the address where it will be executed.
///
EFI_PHYSICAL_ADDRESS ImageAddress;
///
/// Size of the image as it will be executed.
///
UINT64 ImageSize;
///
/// File handle from which the image was loaded.
/// Can be NULL, indicating the image was not loaded from a handle.
///
EFI_PEI_FILE_HANDLE FileHandle;
};