]> git.proxmox.com Git - mirror_edk2.git/blame - EdkCompatibilityPkg/Foundation/Framework/Ppi/FindFv/FindFv.h
Removed extra typedefs on structures to fix error generated by gcc.
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Framework / Ppi / FindFv / FindFv.h
CommitLineData
3eb9473e 1/*++\r
2\r
3Copyright (c) 2004, 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 FindFv.h\r
15\r
16Abstract:\r
17\r
18 FindFv PPI as defined in Tiano\r
19\r
20 Used to locate FVs that contain PEIMs in PEI\r
21\r
22--*/\r
23\r
24#ifndef _FIND_FV_H_\r
25#define _FIND_FV_H_\r
26\r
27#include "EfiFirmwareVolumeHeader.h"\r
28\r
29#define EFI_FIND_FV_PPI_GUID \\r
30 { \\r
31 0x36164812, 0xa023, 0x44e5, 0xbd, 0x85, 0x5, 0xbf, 0x3c, 0x77, 0x0, 0xaa \\r
32 }\r
33\r
34EFI_FORWARD_DECLARATION (EFI_FIND_FV_PPI);\r
35\r
36typedef\r
37EFI_STATUS\r
38(EFIAPI *EFI_FIND_FV_FINDFV) (\r
39 IN EFI_FIND_FV_PPI * This,\r
40 IN EFI_PEI_SERVICES **PeiServices,\r
41 UINT8 *FvNumber,\r
42 EFI_FIRMWARE_VOLUME_HEADER **FVAddress\r
43 );\r
44\r
45typedef struct _EFI_FIND_FV_PPI {\r
46 EFI_FIND_FV_FINDFV FindFv;\r
47} EFI_FIND_FV_PPI;\r
48\r
49extern EFI_GUID gEfiFindFvPpiGuid;\r
50\r
51#endif\r