]> git.proxmox.com Git - mirror_edk2.git/blob - EdkModulePkg/Include/EdkDxeCore.h
2308e97d147c7c12807fec307b73f337b8dc0c67
[mirror_edk2.git] / EdkModulePkg / Include / EdkDxeCore.h
1 /*++
2
3 Copyright (c) 2006 - 2007, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 Module Name:
13 EdkDxe.h
14
15 Abstract:
16 This file defines the base package surface area for writting a PEIM
17
18 Things defined in the Tiano specification go in DxeCis.h.
19
20 Dxe.h contains build environment and library information needed to build
21 a basic Dxe driver. This file must match the "base package" definition of
22 how to write a Dxe driver.
23
24 --*/
25
26 #ifndef __EDK_DXE_CORE_H__
27 #define __EDK_DXE_CORE_H__
28
29 #include <Common/DecompressLibraryHob.h>
30
31 //
32 // BUGBUG: Performance related protocol and Guid.
33 // They are Tiano-private, but are required for DxeCore
34 //
35 #include <Protocol/Performance.h>
36 #include <Guid/PeiPerformanceHob.h>
37 //
38 // BUGBUG: Do these really belomg here?
39 //
40 #include <Guid/PeiPeCoffLoader.h>
41 #include <Guid/MemoryTypeInformation.h>
42
43 #include <Protocol/CustomizedDecompress.h>
44 #include <Protocol/DebugLevel.h>
45 #include <Protocol/LoadPe32Image.h>
46 #include <Protocol/EdkDecompress.h>
47 #include <Protocol/Print.h>
48
49 #if (EFI_SPECIFICATION_VERSION >= 0x00020000)
50 #include <Protocol/Capsule.h>
51 #endif
52
53 #endif