]> git.proxmox.com Git - mirror_edk2.git/blob - EdkModulePkg/Library/EdkFvbServiceLib/Fvb.h
removing the dependency on EDKDxeSalLib and EdxDxeRuntimeSalLib, instead using DxeExt...
[mirror_edk2.git] / EdkModulePkg / Library / EdkFvbServiceLib / Fvb.h
1 /**
2 The internal header file for EdkFvbServiceLib.
3
4 Copyright (c) 2006 Intel Corporation. <BR>
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 **/
11
12 #ifndef __FVB_H__
13 #define __FVB_H__
14
15 #define MAX_FVB_COUNT 16
16
17 typedef struct {
18 EFI_HANDLE Handle;
19 EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *Fvb;
20 EFI_FVB_EXTENSION_PROTOCOL *FvbExtension;
21 BOOLEAN IsRuntimeAccess;
22 } FVB_ENTRY;
23
24 #endif