]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Library/EdkFvbServiceLib/Fvb.h
9ef08857e704256466ba46ecd5d69af50d8b88ea
[mirror_edk2.git] / MdeModulePkg / 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
16 #include <PiDxe.h>
17
18 #include <Protocol/FirmwareVolumeBlock.h>
19 #include <Protocol/FvbExtension.h>
20
21 #include <Library/FvbServiceLib.h>
22 #include <Library/UefiLib.h>
23 #include <Library/BaseLib.h>
24 #include <Library/DebugLib.h>
25 #include <Library/BaseMemoryLib.h>
26 #include <Library/UefiRuntimeLib.h>
27 #include <Library/UefiBootServicesTableLib.h>
28
29 #define MAX_FVB_COUNT 16
30
31 typedef struct {
32 EFI_HANDLE Handle;
33 EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *Fvb;
34 EFI_FVB_EXTENSION_PROTOCOL *FvbExtension;
35 BOOLEAN IsRuntimeAccess;
36 } FVB_ENTRY;
37
38 #endif