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