VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/FirmwareNew/MdeModulePkg/Library/VariablePolicyLib/VariablePolicyExtraInitNull.c@ 99396

Last change on this file since 99396 was 89983, checked in by vboxsync, 4 years ago

Devices/EFI: Merge edk-stable202105 and openssl 1.1.1j and make it build, bugref:4643

  • Property svn:eol-style set to native
File size: 993 bytes
Line 
1/** @file -- VariablePolicyExtraInitNull.c
2This file contains extra init and deinit routines that don't do anything
3extra.
4
5Copyright (c) Microsoft Corporation.
6SPDX-License-Identifier: BSD-2-Clause-Patent
7
8**/
9
10#include <Library/UefiRuntimeServicesTableLib.h>
11
12
13/**
14 An extra init hook that enables the RuntimeDxe library instance to
15 register VirtualAddress change callbacks. Among other things.
16
17 @retval EFI_SUCCESS Everything is good. Continue with init.
18 @retval Others Uh... don't continue.
19
20**/
21EFI_STATUS
22VariablePolicyExtraInit (
23 VOID
24 )
25{
26 // NULL implementation.
27 return EFI_SUCCESS;
28}
29
30
31/**
32 An extra deinit hook that enables the RuntimeDxe library instance to
33 register VirtualAddress change callbacks. Among other things.
34
35 @retval EFI_SUCCESS Everything is good. Continue with deinit.
36 @retval Others Uh... don't continue.
37
38**/
39EFI_STATUS
40VariablePolicyExtraDeinit (
41 VOID
42 )
43{
44 // NULL implementation.
45 return EFI_SUCCESS;
46}
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette