mirror of https://github.com/acidanthera/audk.git
21 lines
360 B
C
21 lines
360 B
C
|
/** @file
|
||
|
This library retrieve the EFI_BOOT_SERVICES pointer from EFI system table in
|
||
|
library's constructor.
|
||
|
|
||
|
Copyright (c) 2021, Intel Corporation. All rights reserved.<BR>
|
||
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
|
||
|
**/
|
||
|
|
||
|
|
||
|
#include <Uefi.h>
|
||
|
|
||
|
EFI_STATUS
|
||
|
EFIAPI
|
||
|
DxeHobListLibNullConstructor (
|
||
|
VOID
|
||
|
)
|
||
|
{
|
||
|
return EFI_SUCCESS;
|
||
|
}
|