]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/CommonHeader.h
Add DxeBootScriptLibNull in IntelFrameworkPkg.
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Isa / IsaBusDxe / 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.
8 This software and associated documentation (if any) is furnished
9 under a license and may only be used or copied in accordance
10 with the terms of the license. Except as permitted by such
11 license, no part of this software or documentation may be
12 reproduced, stored in a retrieval system, or transmitted in any
13 form or by any means without the express written consent of
14 Intel Corporation.
15 **/
16
17 #ifndef __COMMON_HEADER_H_
18 #define __COMMON_HEADER_H_
19
20
21 //
22 // The package level header files this module uses
23 //
24 #include <PiDxe.h>
25 #include <FrameworkDxe.h>
26 //
27 // The protocols, PPI and GUID defintions for this module
28 //
29 #include <Protocol/PciIo.h>
30 #include <Protocol/ComponentName.h>
31 #include <Protocol/IsaIo.h>
32 #include <Protocol/DevicePath.h>
33 #include <Protocol/IsaAcpi.h>
34 #include <Protocol/DriverBinding.h>
35 #include <Protocol/GenericMemoryTest.h>
36 #include <Guid/StatusCodeDataTypeId.h>
37 //
38 // The Library classes this module consumes
39 //
40 #include <Library/DebugLib.h>
41 #include <Library/UefiDriverEntryPoint.h>
42 #include <Library/UefiLib.h>
43 #include <Library/DevicePathLib.h>
44 #include <Library/BaseMemoryLib.h>
45 #include <Library/MemoryAllocationLib.h>
46 #include <Library/UefiBootServicesTableLib.h>
47 #include <Library/ReportStatusCodeLib.h>
48 #include <Library/BootScriptLib.h>
49 #include <Library/PcdLib.h>
50 //
51 // Driver Binding Externs
52 //
53 extern EFI_DRIVER_BINDING_PROTOCOL gIsaBusControllerDriver;
54 extern EFI_COMPONENT_NAME_PROTOCOL gIsaBusComponentName;
55
56 #endif