]> git.proxmox.com Git - mirror_edk2.git/blame - SignedCapsulePkg/Universal/RecoveryModuleLoadPei/RecoveryModuleLoadPei.h
ShellPkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / SignedCapsulePkg / Universal / RecoveryModuleLoadPei / RecoveryModuleLoadPei.h
CommitLineData
e470ee6d
JY
1/** @file\r
2 Recovery module header file.\r
3\r
4 Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>\r
5 This program and the accompanying materials\r
6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
8 http://opensource.org/licenses/bsd-license.php\r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14\r
15#ifndef _RECOVERY_MODULE_LOAD_PEI_H_\r
16#define _RECOVERY_MODULE_LOAD_PEI_H_\r
17\r
18#include <PiPei.h>\r
19\r
20#include <Library/BaseLib.h>\r
21#include <Library/BaseMemoryLib.h>\r
22#include <Library/DebugLib.h>\r
23#include <Library/MemoryAllocationLib.h>\r
24#include <Library/PcdLib.h>\r
25#include <Library/HobLib.h>\r
26#include <Library/EdkiiSystemCapsuleLib.h>\r
27\r
28//\r
29// Update data\r
30//\r
31\r
32typedef struct {\r
33 UINTN NumOfRecovery;\r
34} CONFIG_HEADER;\r
35\r
36typedef struct {\r
37 UINTN Index;\r
38 EFI_GUID FileGuid;\r
39 UINTN Length;\r
40 UINTN ImageOffset;\r
41} RECOVERY_CONFIG_DATA;\r
42\r
43#endif\r
44\r