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