]> git.proxmox.com Git - mirror_edk2.git/blame - OldMdePkg/Include/Peim.h
add in GraphicsLib
[mirror_edk2.git] / OldMdePkg / 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
9c89ec98 41#if defined(MDE_CPU_IPF)\r
42#include <SalApi.h>\r
63afc360 43#include <PalApi.h>\r
9c89ec98 44#endif\r
45 \r
878ddf1f 46#include <Protocol/Decompress.h>\r
47\r
48//\r
49//StatusCodeDataTypeId needs DebugSupport Protocol definition\r
50//\r
51#include <Protocol/DebugSupport.h>\r
52#include <Common/StatusCodeDataTypeId.h>\r
53#include <Guid/StatusCodeDataTypeId.h>\r
8a1fd113 54#include <Guid/GlobalVariable.h>\r
878ddf1f 55\r
56#include <Ppi/Pcd.h>\r
878ddf1f 57\r
58#endif\r