]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkPkg/Include/Guid/Capsule.h
1) Remove Protocol/AcpiS3Save.h from IntelFrameworkPkg, which should be defined in...
[mirror_edk2.git] / IntelFrameworkPkg / Include / Guid / Capsule.h
1 /** @file
2 GUIDs used for EFI Capsule
3
4 Copyright (c) 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 Module Name: Capsule.h
14
15 @par Revision Reference:
16 GUIDs defined in Capsule Spec Version 0.9
17
18 **/
19
20 #ifndef _CAPSULE_GUID_H__
21 #define _CAPSULE_GUID_H__
22
23 #include <PiPei.h>
24
25 //
26 // This is the GUID of the capsule header of the image on disk.
27 //
28 #define EFI_CAPSULE_GUID \
29 { \
30 0x3B6686BD, 0x0D76, 0x4030, {0xB7, 0x0E, 0xB5, 0x51, 0x9E, 0x2F, 0xC5, 0xA0 } \
31 }
32
33 //
34 // This is the GUID of the configuration results file created by the capsule
35 // application.
36 //
37 #define EFI_CONFIG_FILE_NAME_GUID \
38 { \
39 0x98B8D59B, 0xE8BA, 0x48EE, {0x98, 0xDD, 0xC2, 0x95, 0x39, 0x2F, 0x1E, 0xDB } \
40 }
41
42 extern EFI_GUID gEfiCapsuleGuid;
43 extern EFI_GUID gEfiConfigFileNameGuid;
44
45 #endif