TianoCore EDK2 master
Loading...
Searching...
No Matches
SmmLockBoxMmDependency.c
Go to the documentation of this file.
1
13#include <Uefi.h>
15#include <Library/DebugLib.h>
16#include <Protocol/LockBox.h>
17
31EFIAPI
33 IN EFI_HANDLE ImageHandle,
34 IN EFI_SYSTEM_TABLE *SystemTable
35 )
36{
37 EFI_STATUS Status;
38
39 //
40 // Install NULL to DXE data base as notify
41 //
42 Status = gBS->InstallProtocolInterface (
43 &ImageHandle,
44 &gEfiLockBoxProtocolGuid,
46 NULL
47 );
48 ASSERT_EFI_ERROR (Status);
49 return Status;
50}
#define NULL
Definition: Base.h:319
#define IN
Definition: Base.h:279
#define ASSERT_EFI_ERROR(StatusParameter)
Definition: DebugLib.h:462
EFI_STATUS EFIAPI SmmLockBoxMmDependencyConstructor(IN EFI_HANDLE ImageHandle, IN EFI_SYSTEM_TABLE *SystemTable)
RETURN_STATUS EFI_STATUS
Definition: UefiBaseType.h:29
VOID * EFI_HANDLE
Definition: UefiBaseType.h:33
EFI_BOOT_SERVICES * gBS
@ EFI_NATIVE_INTERFACE
Definition: UefiSpec.h:1193