]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/Library/PeiCoreEntryPoint.h
4f88223d73cf35ceb1849c0b7a5131c50d27e651
[mirror_edk2.git] / MdePkg / Include / Library / PeiCoreEntryPoint.h
1 /** @file
2 Entry point to the PEI Core
3
4 Copyright (c) 2006, Intel Corporation<BR>
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #ifndef __MODULE_ENTRY_POINT_H__
16 #define __MODULE_ENTRY_POINT_H__
17
18
19 /**
20 Call constructs for all libraries. Automatics Generated by tool.
21
22 @param FfsHeader Pointer to header of FFS.
23 @param PeiServices Pointer to the PEI Services Table.
24
25 **/
26 VOID
27 EFIAPI
28 ProcessLibraryConstructorList (
29 IN EFI_FFS_FILE_HEADER *FfsHeader,
30 IN EFI_PEI_SERVICES **PeiServices
31 );
32
33
34 /**
35 Call the list of driver entry points. Automatics Generated by tool.
36
37 @param PeiStartupDescriptor Pointer to startup information .
38 @param OldCoreData Pointer to Original startup information.
39
40 @return Status returned by entry points of drivers.
41
42 **/
43 EFI_STATUS
44 EFIAPI
45 ProcessModuleEntryPointList (
46 IN EFI_PEI_STARTUP_DESCRIPTOR *PeiStartupDescriptor,
47 IN VOID *OldCoreData
48 );
49
50 #endif