]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Peim.h
Populate the zip file while building the manifest.
[mirror_edk2.git] / MdePkg / Include / Peim.h
CommitLineData
878ddf1f 1/** @file\r
2\r
3 Root include file for PEI Modules using the Mde Package.\r
4\r
5 PEI Modules follow the public Framwork specifications. This include\r
6 file supports all the public Framework specificaitons and if you \r
7 only want to support PIWG specifications you need to use PiwgPeim.h\r
8 The build infrastructure automatically sets EDK_RELEASE_VERSION \r
9 before including this file. \r
10\r
11\r
12Copyright (c) 2006, Intel Corporation\r
13All rights reserved. This program and the accompanying materials\r
14are licensed and made available under the terms and conditions of the BSD License\r
15which accompanies this distribution. The full text of the license may be found at\r
16http://opensource.org/licenses/bsd-license.php\r
17\r
18THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
19WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
20\r
21**/\r
22\r
23\r
24#ifndef __PEIM_H__\r
25#define __PEIM_H__\r
26\r
27\r
28//\r
29// Check to make sure EDK_RELEASE_VERSION is defined\r
30//\r
31#if !defined(EDK_RELEASE_VERSION)\r
32 #error EDK_RELEASE_VERSION not defined\r
33#elif (EDK_RELEASE_VERSION == 0)\r
34 #error EDK_RELEASE_VERSION can not be zero\r
35#endif\r
36\r
37\r
38#include <Common/UefiBaseTypes.h>\r
39#include <Peim/PeiCis.h>\r
40\r
41#include <Protocol/Decompress.h>\r
42\r
43//\r
44//StatusCodeDataTypeId needs DebugSupport Protocol definition\r
45//\r
46#include <Protocol/DebugSupport.h>\r
47#include <Common/StatusCodeDataTypeId.h>\r
48#include <Guid/StatusCodeDataTypeId.h>\r
8a1fd113 49#include <Guid/GlobalVariable.h>\r
878ddf1f 50\r
51#include <Ppi/Pcd.h>\r
878ddf1f 52\r
53#endif\r