]> git.proxmox.com Git - mirror_edk2.git/blob - EdkModulePkg/Include/EdkDxeCore.h
java variable should have its first char in low case.
[mirror_edk2.git] / EdkModulePkg / Include / EdkDxeCore.h
1 /*++
2
3 Copyright (c) 2006, 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 //
30 // BUGBUG: We must include this lib here due to ordering issues
31 //
32 #include <Common/DecompressLibraryHob.h>
33 #include <Library/PeCoffLib.h>
34
35 //
36 // BUGBUG: Performance related protocol and Guid.
37 // They are Tiano-private, but are required for DxeCore
38 //
39 #include <Protocol/Performance.h>
40 #include <Guid/PeiPerformanceHob.h>
41 //
42 // BUGBUG: Do these really belomg here?
43 //
44 #include <Guid/PeiPeCoffLoader.h>
45 #include <Guid/MemoryTypeInformation.h>
46
47 #include <Protocol/CustomizedDecompress.h>
48 #include <Protocol/DebugLevel.h>
49 #include <Protocol/LoadPe32Image.h>
50 #include <Protocol/EdkDecompress.h>
51 #include <Protocol/Print.h>
52
53 #if (EFI_SPECIFICATION_VERSION >= 0x00020000)
54 #include <Protocol/Capsule.h>
55 #endif
56
57 #endif