]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Core/DxeIplPeim/CommonHeader.h
Check in following modules,
[mirror_edk2.git] / MdeModulePkg / Core / DxeIplPeim / CommonHeader.h
1 /**@file
2 Common header file shared by all source files.
3
4 This file includes package header files, library classes and protocol, PPI & GUID definitions.
5
6 Copyright (c) 2006 - 2007, Intel Corporation
7 All rights reserved. This program and the accompanying materials
8 are licensed and made available under the terms and conditions of the BSD License
9 which accompanies this distribution. The full text of the license may be found at
10 http://opensource.org/licenses/bsd-license.php
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13 **/
14
15 #ifndef __COMMON_HEADER_H_
16 #define __COMMON_HEADER_H_
17
18
19 //
20 // The package level header files this module uses
21 //
22 #include <PiPei.h>
23 //
24 // The protocols, PPI and GUID defintions for this module
25 //
26 #include <Ppi/DxeIpl.h>
27 #include <Ppi/S3Resume.h>
28 #include <Protocol/EdkDecompress.h>
29 #include <Ppi/EndOfPeiPhase.h>
30 #include <Protocol/CustomizedDecompress.h>
31 #include <Protocol/Decompress.h>
32 #include <Ppi/Security.h>
33 #include <Ppi/SectionExtraction.h>
34 #include <Ppi/LoadFile.h>
35 #include <Ppi/RecoveryModule.h>
36 #include <Ppi/MemoryDiscovered.h>
37 //
38 // The Library classes this module consumes
39 //
40 #include <Library/DebugLib.h>
41 #include <Library/PeimEntryPoint.h>
42 #include <Library/BaseLib.h>
43 #include <Library/HobLib.h>
44 #include <Library/PeiServicesLib.h>
45 #include <Library/ReportStatusCodeLib.h>
46 #include <Library/CacheMaintenanceLib.h>
47 #include <Library/PeCoffLoaderLib.h>
48 #include <Library/UefiDecompressLib.h>
49 #include <Library/CustomDecompressLib.h>
50 #include <Library/PeiServicesTablePointerLib.h>
51 #include <Library/BaseMemoryLib.h>
52 #include <Library/MemoryAllocationLib.h>
53 #include <Library/PcdLib.h>
54 #include <Library/PeCoffLib.h>
55
56 #endif