]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFrameworkPkg/Include/Framework/Hob.h
Clean the public header files to remove the unnecessary include files.
[mirror_edk2.git] / IntelFrameworkPkg / Include / Framework / Hob.h
CommitLineData
79964ac8 1/** @file\r
2 This file defines the data structures per HOB specification v0.9.\r
3\r
2bbaeb0d 4 Copyright (c) 2007 - 2009, Intel Corporation\r
79964ac8 5 All rights reserved. This program and the accompanying materials\r
6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
8 http://opensource.org/licenses/bsd-license.php\r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13 Module Name: FrameworkFirmwareFileSystem.h\r
14\r
15 @par Revision Reference:\r
16 These definitions are from HOB Spec 0.9 but not adopted by PI specs.\r
17\r
18**/\r
19\r
20#ifndef _FRAMEWORK_HOB_H_\r
21#define _FRAMEWORK_HOB_H_\r
22\r
2bbaeb0d 23///\r
24/// Capsule volume HOB -- identical to a firmware volume\r
b59768ca 25/// This macro is defined to comply with hob Framework Spec. And the marco has been\r
26/// retired in PI1.0 spec. \r
2bbaeb0d 27///\r
9205b2d7 28#define EFI_HOB_TYPE_CV 0x0008\r
79964ac8 29\r
30typedef struct {\r
9205b2d7 31 EFI_HOB_GENERIC_HEADER Header;\r
32 EFI_PHYSICAL_ADDRESS BaseAddress;\r
33 UINT64 Length;\r
79964ac8 34} EFI_HOB_CAPSULE_VOLUME;\r
35\r
36#endif\r