2007-09-26 11:35:36 +02:00
|
|
|
/** @file
|
2009-01-04 04:20:55 +01:00
|
|
|
Recovery library class defines a set of methods related recovery boot mode.
|
2007-09-26 11:35:36 +02:00
|
|
|
|
2008-04-09 07:44:04 +02:00
|
|
|
Copyright (c) 2005 - 2008, Intel Corporation. <BR>
|
|
|
|
All rights reserved. This program and the accompanying materials
|
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2007-09-26 11:35:36 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef __RECOVERY_LIB_H__
|
|
|
|
#define __RECOVERY_LIB_H__
|
|
|
|
|
|
|
|
/**
|
2009-01-04 04:20:55 +01:00
|
|
|
Calling this function causes the system do recovery boot path.
|
2007-09-26 11:35:36 +02:00
|
|
|
|
|
|
|
@retval EFI_SUCESS Sucess to do recovery.
|
|
|
|
@retval Others Fail to do recovery.
|
2008-04-09 07:44:04 +02:00
|
|
|
|
2007-09-26 11:35:36 +02:00
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
2007-09-27 05:20:28 +02:00
|
|
|
PeiRecoverFirmware (
|
2007-09-26 11:35:36 +02:00
|
|
|
VOID
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-09-26 11:35:36 +02:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|