]> git.proxmox.com Git - mirror_edk2.git/blame - UnixPkg/Library/UnixPeCoffLoaderLib/UnixPeCoffLoader.c
Update the copyright notice format
[mirror_edk2.git] / UnixPkg / Library / UnixPeCoffLoaderLib / UnixPeCoffLoader.c
CommitLineData
804405e7 1/*++\r
2\r
f9b8ab56
HT
3Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>\r
4This program and the accompanying materials\r
804405e7 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 TianoPeCoffLoader.c\r
15\r
16Abstract:\r
17\r
18 Wrap the Base PE/COFF loader with the PE COFF Protocol\r
19\r
20\r
21--*/\r
22\r
23#include <Guid/PeiPeCoffLoader.h>\r
24\r
25#include <Library/EdkPeCoffLoaderLib.h>\r
26\r
27EFI_PEI_PE_COFF_LOADER_PROTOCOL *mPeiEfiPeiPeCoffLoader;\r
28\r
29EFI_STATUS\r
30EFIAPI\r
31PeCoffLoaderConstructor (\r
32 IN EFI_FFS_FILE_HEADER *FfsHeader,\r
33 IN EFI_PEI_SERVICES **PeiServices\r
34 )\r
35{\r
36 EFI_STATUS Status;\r
37\r
38 Status = (*PeiServices)->LocatePpi (\r
39 PeiServices,\r
40 &gEfiPeiPeCoffLoaderGuid,\r
41 0,\r
42 NULL,\r
43 (VOID **)&mPeiEfiPeiPeCoffLoader\r
44 );\r
45 return Status;\r
46}\r
47\r
48EFI_PEI_PE_COFF_LOADER_PROTOCOL *\r
49EFIAPI\r
50GetPeCoffLoaderProtocol (\r
51 )\r
52{\r
53 return mPeiEfiPeiPeCoffLoader;\r
54}\r