]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Include/Guid/CapsuleInfo.h
remove member context from _EFI_MTFTP4_TOKEN structure.
[mirror_edk2.git] / MdeModulePkg / Include / Guid / CapsuleInfo.h
1 /*++
2
3 Copyright (c) 2006 - 2007, 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 CapsuleVendor.h
15
16 Abstract:
17
18 Capsule update Guid definitions
19
20 --*/
21
22 #ifndef __EFI_CAPSULE_INFO_GUID_H__
23 #define __EFI_CAPSULE_INFO_GUID_H__
24
25 typedef struct {
26 UINT32 CapsuleArrayNumber;
27 VOID* CapsulePtr[1];
28 } EFI_CAPSULE_TABLE;
29
30 typedef struct {
31 UINT32 CapsuleGuidNumber;
32 EFI_GUID CapsuleGuidPtr[1];
33 } EFI_CAPSULE_INFO_TABLE;
34
35 //
36 // This GUID is used for collecting all capsules' Guids who install in ConfigTable.
37 //
38 #define EFI_CAPSULE_INFO_GUID \
39 { \
40 0x8B34EAC7, 0x2690, 0x460B, { 0x8B, 0xA5, 0xD5, 0xCF, 0x32, 0x83, 0x17, 0x35 } \
41 }
42
43 extern EFI_GUID gEfiCapsuleInfoGuid;
44
45 #endif // #ifndef _EFI_CAPSULE_INFO_GUID_H_