]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Include/Guid/CapsuleVendor.h
Add comments and DoxyGen format for these files.
[mirror_edk2.git] / MdeModulePkg / Include / Guid / CapsuleVendor.h
1 /** @file
2
3 Capsule update Guid definitions for capsule varialbe and capsule hob.
4
5 Copyright (c) 2006 - 2008, Intel Corporation
6 All rights reserved. This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
8 which accompanies this distribution. The full text of the license may be found at
9 http://opensource.org/licenses/bsd-license.php
10
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13
14 **/
15
16 #ifndef __EFI_CAPSULE_VENDOR_GUID_H__
17 #define __EFI_CAPSULE_VENDOR_GUID_H__
18
19 //
20 // Note -- This guid is used as a vendor GUID (depending on implementation)
21 // for the capsule variable if the capsule pointer is passes through reset
22 // via a variable.
23 //
24 #define EFI_CAPSULE_VENDOR_GUID \
25 { 0x711C703F, 0xC285, 0x4B10, { 0xA3, 0xB0, 0x36, 0xEC, 0xBD, 0x3C, 0x8B, 0xE2 } }
26
27 //
28 // Name of capsule variable
29 //
30 #define EFI_CAPSULE_VARIABLE_NAME L"CapsuleUpdateData"
31
32 extern EFI_GUID gEfiCapsuleVendorGuid;
33
34 //
35 // Data structure of capsule guid hob
36 //
37 typedef struct {
38 EFI_PHYSICAL_ADDRESS BaseAddress;
39 UINT32 Length;
40 } CAPSULE_HOB_INFO;
41
42 #endif // #ifndef _EFI_CAPSULE_VENDOR_GUID_H_