]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkPkg/Include/Framework/PeiCis.h
Add missing definition EFI_PEIM_ENTRY_POINT to IntelFrameworkPkg and rename original...
[mirror_edk2.git] / IntelFrameworkPkg / Include / Framework / PeiCis.h
1 /** @file
2 PI PEI master include file. This file should match the PI spec.
3
4 Copyright (c) 2006 - 2007, Intel Corporation
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 @par Revision Reference:
14 Version 1.0.
15
16 **/
17
18 #ifndef __PEICIS_H__
19 #define __PEICIS_H__
20
21 #include <PiPei.h>
22
23 /**
24 The PEI Dispatcher will invoke each PEIM one time. During this pass, the PEI
25 Dispatcher will pass control to the PEIM at the AddressOfEntryPoint in the PE Header.
26
27 @param FfsHeader Pointer to the FFS file header.
28 @param PeiServices Describes the list of possible PEI Services.
29
30 @return Status code
31
32 **/
33 typedef
34 EFI_STATUS
35 (EFIAPI *EFI_PEIM_ENTRY_POINT)(
36 IN EFI_FFS_FILE_HEADER *FfsHeader,
37 IN EFI_PEI_SERVICES **PeiServices
38 );
39
40 #endif