]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdeModulePkg/Include/Library/CapsuleLib.h
Patch from open source community for CryptoPkg to allow it to build for ARM using...
[mirror_edk2.git] / MdeModulePkg / Include / Library / CapsuleLib.h
... / ...
CommitLineData
1/** @file\r
2\r
3 This library class defines a set of interfaces for how to process capsule image updates.\r
4\r
5Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>\r
6This program and the accompanying materials are licensed and made available under \r
7the terms and conditions of the BSD License that accompanies this distribution. \r
8The full text of the license may be found at\r
9http://opensource.org/licenses/bsd-license.php. \r
10\r
11THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
12WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
14**/\r
15\r
16#ifndef __CAPSULE_LIB_H__\r
17#define __CAPSULE_LIB_H__\r
18\r
19/**\r
20 The firmware checks whether the capsule image is supported \r
21 by the CapsuleGuid in CapsuleHeader or if there is other specific information in \r
22 the capsule image.\r
23 \r
24 @param CapsuleHeader Pointer to the UEFI capsule image to be checked.\r
25 \r
26 @retval EFI_SUCESS Input capsule is supported by firmware.\r
27 @retval EFI_UNSUPPORTED Input capsule is not supported by the firmware.\r
28**/\r
29EFI_STATUS\r
30EFIAPI\r
31SupportCapsuleImage (\r
32 IN EFI_CAPSULE_HEADER *CapsuleHeader\r
33 );\r
34\r
35/**\r
36 The firmware-specific implementation processes the capsule image\r
37 if it recognized the format of this capsule image.\r
38 \r
39 @param CapsuleHeader Pointer to the UEFI capsule image to be processed. \r
40 \r
41 @retval EFI_SUCESS Capsule Image processed successfully. \r
42 @retval EFI_UNSUPPORTED Capsule image is not supported by the firmware.\r
43**/\r
44EFI_STATUS\r
45EFIAPI\r
46ProcessCapsuleImage (\r
47 IN EFI_CAPSULE_HEADER *CapsuleHeader\r
48 );\r
49\r
50#endif\r