summaryrefslogtreecommitdiff
path: root/MdePkg/Include/Ppi/LoadImage.h
diff options
context:
space:
mode:
authorxli24 <xli24@6f19259b-4bc3-4df7-8a09-765794883524>2008-09-04 09:15:21 +0000
committerxli24 <xli24@6f19259b-4bc3-4df7-8a09-765794883524>2008-09-04 09:15:21 +0000
commitdafa11b191748a841a2a6a4ebab5e40c21026401 (patch)
treebfbaeaf0a54b453185ac2100ef5b1300ae186d94 /MdePkg/Include/Ppi/LoadImage.h
parente6422a369a44c062f5a6dc5f8476ccc2f7e225d1 (diff)
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
Diffstat (limited to 'MdePkg/Include/Ppi/LoadImage.h')
-rw-r--r--MdePkg/Include/Ppi/LoadImage.h31
1 files changed, 16 insertions, 15 deletions
diff --git a/MdePkg/Include/Ppi/LoadImage.h b/MdePkg/Include/Ppi/LoadImage.h
index 5d07fd96b..8bd3e576a 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;
};