Update EntryPoint library header

Remove UefiTcgPlatform.h from Uefi Directory to IndustryStandard
Change EFI_OPTIONAL_POINTER to EFI_OPTIONAL_PTR aligned to UEFI spec.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7014 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
lgao4
2008-12-12 08:51:16 +00:00
parent 963dbb3001
commit f6d2bcc6fa
12 changed files with 63 additions and 65 deletions

View File

@@ -66,7 +66,7 @@ EfiMain (
/**
Invokes the library destructors fror all dependent libraries and terminates
Invokes the library destructors for all dependent libraries and terminates
the UEFI Application.
This function calls ProcessLibraryDestructorList() and the EFI Boot Service Exit()
@@ -132,12 +132,13 @@ ProcessLibraryDestructorList (
);
/**
Call driver entry point. For UEFI application, user
can only specify one entry point. Tool will automatically insert
this to Autogen.c.
This function calls the set of module entry points. It must be called by _ModuleEntryPoint().
@param ImageHandle ImageHandle of the loaded driver.
@param SystemTable Pointer to the EFI System Table.
This function is autogenerated by build tools and those build tools are
responsible for collecting the module entry points and calling them in a specified order.
@param ImageHandle The image handle of the UEFI Application.
@param SystemTable A pointer to the EFI System Table.
@retval EFI_SUCCESS The UEFI Application executed normally.
@retval !EFI_SUCCESS The UEFI Application failed to execute normally.