]> git.proxmox.com Git - mirror_edk2.git/blame - EdkNt32Pkg/Library/Nt32PeCoffLoaderLib/Nt32PeCoffLoader.c
Remove the combo library
[mirror_edk2.git] / EdkNt32Pkg / Library / Nt32PeCoffLoaderLib / Nt32PeCoffLoader.c
CommitLineData
878ddf1f 1/*++\r
2\r
7f47bef3 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
878ddf1f 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\r
24\r
25EFI_PEI_PE_COFF_LOADER_PROTOCOL *mPeiEfiPeiPeCoffLoader;\r
26\r
27EFI_STATUS\r
7f47bef3 28EFIAPI\r
878ddf1f 29PeCoffLoaderConstructor (\r
7f47bef3 30 IN EFI_FFS_FILE_HEADER *FfsHeader,\r
878ddf1f 31 IN EFI_PEI_SERVICES **PeiServices\r
32 )\r
33{\r
34 EFI_STATUS Status;\r
35\r
36 Status = (*PeiServices)->LocatePpi (\r
37 PeiServices,\r
38 &gEfiPeiPeCoffLoaderGuid,\r
39 0,\r
40 NULL,\r
41 &mPeiEfiPeiPeCoffLoader\r
42 );\r
43 return Status;\r
44}\r
45\r
46EFI_PEI_PE_COFF_LOADER_PROTOCOL *\r
47EFIAPI\r
48GetPeCoffLoaderProtocol (\r
49 )\r
50{\r
51 return mPeiEfiPeiPeCoffLoader;\r
52}\r