]> git.proxmox.com Git - mirror_edk2.git/blob - EdkModulePkg/Include/EdkPeiCore.h
Ported to use BaseMemoryLib functions
[mirror_edk2.git] / EdkModulePkg / Include / EdkPeiCore.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_PEI_CORE_H__
27 #define __EDK_PEI_CORE_H__
28
29 //
30 // BUGBUG: We must include this lib here due to ordering issues
31 //
32 #include <Library/PeCoffLib.h>
33
34 #include <Guid/PeiPeCoffLoader.h>
35
36 //
37 // BUGBUG: Performance related Guid.
38 // It is Tiano-private, but is required for PeiCore
39 //
40 #include <Guid/PeiPerformanceHob.h>
41
42 #endif