]> git.proxmox.com Git - mirror_edk2.git/blame - OldMdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.c
Moved the MdePkg to OldMdePkg so that new code in MdePkg does not break existing...
[mirror_edk2.git] / OldMdePkg / Library / PeiCoreEntryPoint / PeiCoreEntryPoint.c
CommitLineData
878ddf1f 1/** @file\r
2 Entry point to a the PEI Core.\r
3\r
4Copyright (c) 2006, Intel Corporation<BR>\r
5All rights reserved. This program and the accompanying materials\r
6are licensed and made available under the terms and conditions of the BSD License\r
7which accompanies this distribution. The full text of the license may be found at\r
8http://opensource.org/licenses/bsd-license.php\r
9\r
10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14\r
15/**\r
16 Enrty point to PEI core.\r
17\r
18 @param PeiStartupDescriptor Pointer of start up information.\r
19 \r
20 @return Status returned by entry points of core and drivers. \r
21\r
22**/\r
23EFI_STATUS\r
24EFIAPI\r
25_ModuleEntryPoint (\r
26 IN EFI_PEI_STARTUP_DESCRIPTOR *PeiStartupDescriptor\r
27 )\r
28{\r
29 //\r
30 // Call the PEI Core entry point\r
31 //\r
32 return ProcessModuleEntryPointList (PeiStartupDescriptor, NULL);\r
33}\r
34\r
35\r
36/**\r
37 Wrapper of enrty point to PEI core.\r
38\r
39 @param PeiStartupDescriptor Pointer of start up information.\r
40 \r
41 @return Status returned by entry points of core and drivers. \r
42\r
43**/\r
44EFI_STATUS\r
45EFIAPI\r
46EfiMain (\r
47 IN EFI_PEI_STARTUP_DESCRIPTOR *PeiStartupDescriptor\r
48 )\r
49{\r
50 return _ModuleEntryPoint (PeiStartupDescriptor);\r
51}\r