]> git.proxmox.com Git - mirror_edk2.git/blame - EdkCompatibilityPkg/Foundation/Framework/Ppi/LoadFile2/LoadFile2.h
Update the copyright notice format
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Framework / Ppi / LoadFile2 / LoadFile2.h
CommitLineData
3eb9473e 1/*++\r
2\r
f57387d5
HT
3Copyright (c) 2007, Intel Corporation. All rights reserved.<BR>\r
4This program and the accompanying materials \r
3eb9473e 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 LoadFile2.h\r
15\r
16Abstract:\r
17\r
18 PI 1.0 spec definition.\r
19\r
20--*/\r
21\r
22#ifndef __LOAD_FILE_PPI_H__\r
23#define __LOAD_FILE_PPI_H__\r
24\r
25EFI_FORWARD_DECLARATION (EFI_PEI_LOAD_FILE_PPI);\r
26\r
27#define EFI_PEI_LOAD_FILE_GUID \\r
7ccf38a3 28 { 0xb9e0abfe, 0x5979, 0x4914, {0x97, 0x7f, 0x6d, 0xee, 0x78, 0xc2, 0x78, 0xa6}}\r
3eb9473e 29\r
30\r
31typedef\r
32EFI_STATUS\r
33(EFIAPI *EFI_PEI_LOAD_FILE) (\r
34 IN CONST EFI_PEI_LOAD_FILE_PPI *This,\r
35 IN EFI_PEI_FILE_HANDLE FileHandle,\r
36 OUT EFI_PHYSICAL_ADDRESS *ImageAddress,\r
37 OUT UINT64 *ImageSize,\r
38 OUT EFI_PHYSICAL_ADDRESS *EntryPoint,\r
39 OUT UINT32 *AuthenticationState\r
40 );\r
41\r
42\r
8cdb2112 43struct _EFI_PEI_LOAD_FILE_PPI {\r
3eb9473e 44 EFI_PEI_LOAD_FILE LoadFile;\r
8cdb2112 45};\r
3eb9473e 46\r
47\r
48extern EFI_GUID gEfiLoadFile2PpiGuid;\r
49#endif\r