]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Include/Library/RecoveryLib.h
1) Add library classes of S3Lib and RecoveryLib in MdeModulePkg
[mirror_edk2.git] / MdeModulePkg / Include / Library / RecoveryLib.h
1 /** @file
2 Recovery Library. This library class defines a set of methods related recovery mode.
3
4 Copyright (c) 2005 - 2007, Intel Corporation
5 All rights reserved. This program and the accompanying materials
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 __RECOVERY_LIB_H__
16 #define __RECOVERY_LIB_H__
17
18 /**
19 Calling this function causes the system do recovery.
20
21 @retval EFI_SUCESS Sucess to do recovery.
22 @retval Others Fail to do recovery.
23 **/
24 EFI_STATUS
25 EFIAPI
26 Recovery (
27 VOID
28 )
29 ;
30
31 #endif
32
33