]> git.proxmox.com Git - mirror_edk2.git/blob - EdkCompatibilityPkg/Foundation/Framework/Ppi/RecoveryModule/RecoveryModule.h
Add in the 1st version of ECP.
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Framework / Ppi / RecoveryModule / RecoveryModule.h
1 /*++
2
3 Copyright (c) 2004, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 Module Name:
13
14 RecoveryModule.h
15
16 Abstract:
17
18 Recovery Module PPI as defined in Tiano
19
20 --*/
21
22 #ifndef _PEI_RECOVERY_MODULE_PPI_H
23 #define _PEI_RECOVERY_MODULE_PPI_H
24
25 #define PEI_RECOVERY_MODULE_INTERFACE_PPI \
26 { \
27 0xFB6D9542, 0x612D, 0x4f45, 0x87, 0x2F, 0x5C, 0xFF, 0x52, 0xE9, 0x3D, 0xCF \
28 }
29
30 EFI_FORWARD_DECLARATION (PEI_RECOVERY_MODULE_INTERFACE);
31
32 typedef
33 EFI_STATUS
34 (EFIAPI *PEI_LOAD_RECOVERY_CAPSULE) (
35 IN EFI_PEI_SERVICES **PeiServices,
36 IN PEI_RECOVERY_MODULE_INTERFACE * This
37 );
38
39 typedef struct _PEI_RECOVERY_MODULE_INTERFACE {
40 PEI_LOAD_RECOVERY_CAPSULE LoadRecoveryCapsule;
41 } PEI_RECOVERY_MODULE_INTERFACE;
42
43 extern EFI_GUID gPeiRecoveryModulePpiGuid;
44
45 #endif