diff options
author | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-10-31 07:23:13 +0000 |
---|---|---|
committer | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-10-31 07:23:13 +0000 |
commit | 63766b6de42426dd33cdfedb2b940730d847abd9 (patch) | |
tree | 8dcb70af6acbcfc0e0121d36e0b7fd57ca66099d /MdePkg/Include/Library/PeimEntryPoint.h | |
parent | 33de5999a76333a549fe8844076e02b5ac086033 (diff) | |
download | edk2-platforms-63766b6de42426dd33cdfedb2b940730d847abd9.tar.xz |
Fix the doxygen comment.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6351 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Library/PeimEntryPoint.h')
-rw-r--r-- | MdePkg/Include/Library/PeimEntryPoint.h | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/MdePkg/Include/Library/PeimEntryPoint.h b/MdePkg/Include/Library/PeimEntryPoint.h index 81c78afbf9..e5dcd4c12b 100644 --- a/MdePkg/Include/Library/PeimEntryPoint.h +++ b/MdePkg/Include/Library/PeimEntryPoint.h @@ -24,8 +24,9 @@ extern CONST UINT32 _gPeimRevision; /**
Image entry point of Peim.
- @param FfsHeader Pointer to FFS header the loaded driver.
- @param PeiServices Pointer to the PEI services.
+ @param FileHandle Handle of the file being invoked.
+ Type EFI_PEI_FILE_HANDLE is defined in FfsFindNextFile().
+ @param PeiServices Describes the list of possible PEI Services.
@return Status returned by entry points of Peims.
@@ -41,8 +42,9 @@ _ModuleEntryPoint ( /**
Wrapper of Peim image entry point.
- @param FfsHeader Pointer to FFS header the loaded driver.
- @param PeiServices Pointer to the PEI services.
+ @param FileHandle Handle of the file being invoked.
+ Type EFI_PEI_FILE_HANDLE is defined in FfsFindNextFile().
+ @param PeiServices Describes the list of possible PEI Services.
@return Status returned by entry points of Peims.
@@ -58,8 +60,9 @@ EfiMain ( /**
Call constructs for all libraries. Automatics Generated by tool.
- @param FfsHeader Pointer to FFS header the loaded driver.
- @param PeiServices Pointer to the PEI services.
+ @param FileHandle Handle of the file being invoked.
+ Type EFI_PEI_FILE_HANDLE is defined in FfsFindNextFile().
+ @param PeiServices Describes the list of possible PEI Services.
**/
VOID
@@ -73,8 +76,9 @@ ProcessLibraryConstructorList ( /**
Call destructors for all libraries. Automatics Generated by tool.
- @param FfsHeader Pointer to FFS header the loaded driver.
- @param PeiServices Pointer to the PEI services.
+ @param FileHandle Handle of the file being invoked.
+ Type EFI_PEI_FILE_HANDLE is defined in FfsFindNextFile().
+ @param PeiServices Describes the list of possible PEI Services.
**/
VOID
@@ -88,8 +92,9 @@ ProcessLibraryDestructorList ( /**
Call the list of driver entry points. Automatics Generated by tool.
- @param FfsHeader Pointer to FFS header the loaded driver.
- @param PeiServices Pointer to the PEI services.
+ @param FileHandle Handle of the file being invoked.
+ Type EFI_PEI_FILE_HANDLE is defined in FfsFindNextFile().
+ @param PeiServices Describes the list of possible PEI Services.
@return Status returned by entry points of drivers.
|