]> git.proxmox.com Git - mirror_edk2.git/blame - EdkModulePkg/Include/Protocol/FvbExtension.h
Remove the BugBug in package header file for DXE_CORE and DXE_DRIVER which force...
[mirror_edk2.git] / EdkModulePkg / Include / Protocol / FvbExtension.h
CommitLineData
878ddf1f 1/*++\r
2\r
3Copyright (c) 2006, Intel Corporation \r
4All rights reserved. This program and the accompanying materials \r
5are licensed and made available under the terms and conditions of the BSD License \r
6which accompanies this distribution. The full text of the license may be found at \r
7http://opensource.org/licenses/bsd-license.php \r
8 \r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
11\r
12Module Name:\r
13 \r
14 FvbExtension.h\r
15\r
16Abstract:\r
17\r
18 FVB Extension protocol that extends the FVB Class in a component fashion.\r
19\r
20--*/\r
21\r
22#ifndef _FVB_EXTENSION_H_\r
23#define _FVB_EXTENSION_H_\r
24\r
25#define EFI_FVB_EXTENSION_PROTOCOL_GUID \\r
26 {0x53a4c71b, 0xb581, 0x4170, {0x91, 0xb3, 0x8d, 0xb8, 0x7a, 0x4b, 0x5c, 0x46 } }\r
27\r
28typedef struct _EFI_FVB_EXTENSION_PROTOCOL EFI_FVB_EXTENSION_PROTOCOL;\r
29\r
30//\r
31// FVB Extension Function Prototypes\r
32//\r
33typedef\r
34EFI_STATUS\r
35(EFIAPI * EFI_FV_ERASE_CUSTOM_BLOCK) (\r
36 IN EFI_FVB_EXTENSION_PROTOCOL *This,\r
37 IN EFI_LBA StartLba,\r
38 IN UINTN OffsetStartLba,\r
39 IN EFI_LBA LastLba,\r
40 IN UINTN OffsetLastLba\r
41);\r
42\r
43//\r
44// IPMI TRANSPORT PROTOCOL\r
45//\r
46struct _EFI_FVB_EXTENSION_PROTOCOL {\r
47 EFI_FV_ERASE_CUSTOM_BLOCK EraseFvbCustomBlock;\r
48};\r
49\r
50extern EFI_GUID gEfiFvbExtensionProtocolGuid;\r
51\r
52#endif\r
53\r