1) Add in FvFileLoaderToLoadFileThunk.

2) Update some doxygen comments.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5309 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qwang12
2008-05-29 08:50:42 +00:00
parent 67ef3cad3b
commit 001d920c76
4 changed files with 201 additions and 18 deletions

View File

@@ -66,29 +66,21 @@ EFI_PEI_PPI_DESCRIPTOR mPpiListVariable = {
&mVariablePpi
};
/**
Standard entry point of a PEIM.
@param FfsHeadher The FFS file header
@param PeiServices General purpose services available to every PEIM.
@retval EFI_SUCCESS If the gEfiPeiReadOnlyVariablePpiGuid interface could be successfully installed.
--*/
EFI_STATUS
EFIAPI
PeimInitializeReadOnlyVariable (
IN EFI_FFS_FILE_HEADER *FfsHeader,
IN EFI_PEI_FILE_HANDLE FfsHeader,
IN CONST EFI_PEI_SERVICES **PeiServices
)
/*++
Routine Description:
Provide the functionality of the variable services.
Arguments:
FfsHeadher - The FFS file header
PeiServices - General purpose services available to every PEIM.
Returns:
Status - EFI_SUCCESS if the interface could be successfully
installed
--*/
{
VOID *Interface;
EFI_STATUS Status;