]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Library/EdkFvbServiceLib/Fvb.h
Remove all blanks lines to avoid build errors.
[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 // The package level header files this module uses
17 //
18 #include <PiDxe.h>
19 //
20 // The protocols, PPI and GUID defintions for this module
21 //
22 #include <Protocol/FirmwareVolumeBlock.h>
23 #include <Protocol/FvbExtension.h>
24 //
25 // The Library classes this module consumes
26 //
27 #include <Library/FvbServiceLib.h>
28 #include <Library/UefiLib.h>
29 #include <Library/BaseLib.h>
30 #include <Library/DebugLib.h>
31 #include <Library/BaseMemoryLib.h>
32 #include <Library/UefiRuntimeLib.h>
33 #include <Library/UefiBootServicesTableLib.h>
34
35 #define MAX_FVB_COUNT 16
36
37 typedef struct {
38 EFI_HANDLE Handle;
39 EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *Fvb;
40 EFI_FVB_EXTENSION_PROTOCOL *FvbExtension;
41 BOOLEAN IsRuntimeAccess;
42 } FVB_ENTRY;
43
44 #endif