mirror of https://github.com/acidanthera/audk.git
Add function headers in UefiDriverModuleLib
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1244 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
f496b9b5ce
commit
b059e41102
|
@ -10,13 +10,20 @@
|
|||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name: EfiDriverModelLib.c
|
||||
Module Name: UefiDriverModelLib.c
|
||||
|
||||
**/
|
||||
|
||||
|
||||
|
||||
/**
|
||||
The constructor function installs the standard EFI Driver Model Protocols.
|
||||
|
||||
@param[in] ImageHandle The firmware allocated handle for the EFI image.
|
||||
@param[in] SystemTable A pointer to the EFI System Table.
|
||||
|
||||
@retval EFI_SUCCESS The constructor always return EFI_SUCCESS.
|
||||
|
||||
**/
|
||||
EFI_STATUS
|
||||
UefiDriverModelLibConstructor (
|
||||
|
@ -221,6 +228,13 @@ UefiDriverModelLibConstructor (
|
|||
}
|
||||
|
||||
/**
|
||||
The destructor function uninstalls the standard EFI Driver Model Protocols.
|
||||
|
||||
@param[in] ImageHandle The firmware allocated handle for the EFI image.
|
||||
@param[in] SystemTable A pointer to the EFI System Table.
|
||||
|
||||
@retval EFI_SUCCESS The constructor always return EFI_SUCCESS.
|
||||
|
||||
**/
|
||||
EFI_STATUS
|
||||
UefiDriverModelLibDestructor (
|
||||
|
|
Loading…
Reference in New Issue