]> git.proxmox.com Git - mirror_edk2.git/blame - OvmfPkg/Include/Library/PlatformFvbLib.h
Update the copyright notice format
[mirror_edk2.git] / OvmfPkg / Include / Library / PlatformFvbLib.h
CommitLineData
921d5b47 1/** @file\r
2 Library to define platform customization functions for a\r
3 Firmare Volume Block driver.\r
4\r
5 Copyright (c) 2009, Intel Corporation<BR>\r
6 All rights reserved. This program and the accompanying materials\r
7 are licensed and made available under the terms and conditions of the BSD License\r
8 which accompanies this distribution. The full text of the license may be found at\r
9 http://opensource.org/licenses/bsd-license.php\r
10\r
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
14**/\r
15\r
16#ifndef __PLATFORM_FVB_LIB__\r
17#define __PLATFORM_FVB_LIB__\r
18\r
19#include <Protocol/FirmwareVolumeBlock.h>\r
20\r
21/**\r
22 This function will be called following a call to the\r
23 EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL Write function.\r
24\r
25 @param[in] This EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL instance.\r
26 @param[in] Lba The starting logical block index to written to.\r
27\r
28**/\r
29VOID\r
30EFIAPI\r
31PlatformFvbDataWritten (\r
32 IN CONST EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *This,\r
33 IN EFI_LBA Lba\r
34 );\r
35\r
36#endif\r
37\r