From dafa11b191748a841a2a6a4ebab5e40c21026401 Mon Sep 17 00:00:00 2001 From: xli24 Date: Thu, 4 Sep 2008 09:15:21 +0000 Subject: 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 --- MdePkg/Include/Ppi/LoadImage.h | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) (limited to 'MdePkg/Include/Ppi/LoadImage.h') diff --git a/MdePkg/Include/Ppi/LoadImage.h b/MdePkg/Include/Ppi/LoadImage.h index 5d07fd96b8..8bd3e576ac 100644 --- a/MdePkg/Include/Ppi/LoadImage.h +++ b/MdePkg/Include/Ppi/LoadImage.h @@ -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; }; -- cgit v1.2.3