]> git.proxmox.com Git - mirror_edk2.git/blame - OvmfPkg/Library/NvVarsFileLib/NvVarsFileLib.h
MdeModulePkg/DiskIoDxe: fix source/destination pointer of overrun transfer
[mirror_edk2.git] / OvmfPkg / Library / NvVarsFileLib / NvVarsFileLib.h
CommitLineData
50944545 1/** @file
2 Save Non-Volatile Variables to a file system.
3
59b19469 4 Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved.<BR>
56d7640a 5 This program and the accompanying materials
50944545 6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13**/
14
15#ifndef __NV_VARS_FILE_LIB_INSTANCE__
16#define __NV_VARS_FILE_LIB_INSTANCE__
17
18#include <Uefi.h>
19
20#include <Guid/FileInfo.h>
21
22#include <Protocol/SimpleFileSystem.h>
23
24#include <Library/BaseLib.h>
25#include <Library/FileHandleLib.h>
59b19469 26#include <Library/SerializeVariablesLib.h>
50944545 27#include <Library/UefiBootServicesTableLib.h>
28#include <Library/UefiRuntimeServicesTableLib.h>
29#include <Library/UefiLib.h>
30
31/**
32 Loads the non-volatile variables from the NvVars file on the
33 given file system.
34
35 @param[in] FsHandle - Handle for a gEfiSimpleFileSystemProtocolGuid instance
36
37 @return EFI_STATUS based on the success or failure of load operation
38
39**/
40EFI_STATUS
41LoadNvVarsFromFs (
42 EFI_HANDLE FsHandle
43 );
44
45
46/**
47 Saves the non-volatile variables into the NvVars file on the
48 given file system.
49
50 @param[in] FsHandle - Handle for a gEfiSimpleFileSystemProtocolGuid instance
51
52 @return EFI_STATUS based on the success or failure of load operation
53
54**/
55EFI_STATUS
56SaveNvVarsToFs (
57 EFI_HANDLE FsHandle
58 );
59
50944545 60#endif
61