]> git.proxmox.com Git - mirror_edk2.git/blame - Nt32Pkg/Library/Nt32PeCoffLoaderLib/Nt32PeCoffLoader.c
1) Remove Protocol/AcpiS3Save.h from IntelFrameworkPkg, which should be defined in...
[mirror_edk2.git] / Nt32Pkg / Library / Nt32PeCoffLoaderLib / Nt32PeCoffLoader.c
CommitLineData
869f8e34 1/*++\r
2\r
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
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
f2569572
A
23#include <PiPei.h>\r
24#include <Guid/PeiPeCoffLoader.h>\r
25#include <Library/PeCoffLoaderLib.h>\r
869f8e34 26\r
27\r
869f8e34 28EFI_PEI_PE_COFF_LOADER_PROTOCOL *mPeiEfiPeiPeCoffLoader;\r
29\r
30EFI_STATUS\r
31EFIAPI\r
32PeCoffLoaderConstructor (\r
33 IN EFI_FFS_FILE_HEADER *FfsHeader,\r
34 IN EFI_PEI_SERVICES **PeiServices\r
35 )\r
36{\r
37 EFI_STATUS Status;\r
38\r
39 Status = (*PeiServices)->LocatePpi (\r
40 PeiServices,\r
41 &gEfiPeiPeCoffLoaderGuid,\r
42 0,\r
43 NULL,\r
44 &mPeiEfiPeiPeCoffLoader\r
45 );\r
46 return Status;\r
47}\r
48\r
49EFI_PEI_PE_COFF_LOADER_PROTOCOL *\r
50EFIAPI\r
51GetPeCoffLoaderProtocol (\r
52 )\r
53{\r
54 return mPeiEfiPeiPeCoffLoader;\r
55}\r