]> git.proxmox.com Git - mirror_edk2.git/blame - 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
CommitLineData
1c9d209f 1/** @file\r
2 PI PEI master include file. This file should match the PI spec.\r
3\r
4 Copyright (c) 2006 - 2007, Intel Corporation \r
5 All rights reserved. This program and the accompanying materials \r
6 are licensed and made available under the terms and conditions of the BSD License \r
7 which accompanies this distribution. The full text of the license may be found at \r
8 http://opensource.org/licenses/bsd-license.php \r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
12\r
13 @par Revision Reference:\r
14 Version 1.0.\r
15\r
16**/\r
17\r
18#ifndef __PEICIS_H__\r
19#define __PEICIS_H__\r
20\r
21#include <PiPei.h>\r
22\r
23/**\r
24 The PEI Dispatcher will invoke each PEIM one time. During this pass, the PEI \r
25 Dispatcher will pass control to the PEIM at the AddressOfEntryPoint in the PE Header. \r
26\r
27 @param FfsHeader Pointer to the FFS file header.\r
28 @param PeiServices Describes the list of possible PEI Services.\r
29\r
30 @return Status code\r
31\r
32**/\r
33typedef\r
34EFI_STATUS\r
35(EFIAPI *EFI_PEIM_ENTRY_POINT)(\r
36 IN EFI_FFS_FILE_HEADER *FfsHeader,\r
37 IN EFI_PEI_SERVICES **PeiServices\r
38 );\r
39 \r
40#endif