VirtualBox

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

Last change on this file was 99404, checked in by vboxsync, 2 years ago

Devices/EFI/FirmwareNew: Update to edk2-stable202302 and make it build, bugref:4643

  • Property svn:eol-style set to native
File size: 991 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 An extra init hook that enables the RuntimeDxe library instance to
14 register VirtualAddress change callbacks. Among other things.
15
16 @retval EFI_SUCCESS Everything is good. Continue with init.
17 @retval Others Uh... don't continue.
18
19**/
20EFI_STATUS
21VariablePolicyExtraInit (
22 VOID
23 )
24{
25 // NULL implementation.
26 return EFI_SUCCESS;
27}
28
29/**
30 An extra deinit hook that enables the RuntimeDxe library instance to
31 register VirtualAddress change callbacks. Among other things.
32
33 @retval EFI_SUCCESS Everything is good. Continue with deinit.
34 @retval Others Uh... don't continue.
35
36**/
37EFI_STATUS
38VariablePolicyExtraDeinit (
39 VOID
40 )
41{
42 // NULL implementation.
43 return EFI_SUCCESS;
44}
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