]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - IntelFrameworkPkg/Include/Framework/Hob.h
Grammatical and disclaimer changes (does not follow internal C coding stds.)
[mirror_edk2.git] / IntelFrameworkPkg / Include / Framework / Hob.h
... / ...
CommitLineData
1/** @file\r
2 This file defines the data structures per HOB specification v0.9.\r
3\r
4Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved<BR>\r
5This program and the accompanying materials are licensed and made available under \r
6the terms and conditions of the BSD License that accompanies this distribution. \r
7The full text of the license may be found at\r
8http://opensource.org/licenses/bsd-license.php. \r
9 \r
10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13 @par Revision Reference:\r
14 These definitions are from the HOB Spec 0.9 that were not adopted by the PI specifications.\r
15\r
16**/\r
17\r
18#ifndef _HOB_H_\r
19#define _HOB_H_\r
20\r
21///\r
22/// Capsule volume HOB -- identical to a firmware volume.\r
23/// This macro is defined to comply with the hob Framework Spec. And the marco was\r
24/// retired in the PI1.0 specification. \r
25///\r
26#define EFI_HOB_TYPE_CV 0x0008\r
27\r
28typedef struct {\r
29 EFI_HOB_GENERIC_HEADER Header;\r
30 EFI_PHYSICAL_ADDRESS BaseAddress;\r
31 UINT64 Length;\r
32} EFI_HOB_CAPSULE_VOLUME;\r
33\r
34#endif\r