]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/CommonHeader.h
Update License Headers.
[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<BR>
7 All rights reserved. This program and the accompanying materials
8 are licensed and made available under the terms and conditions of the BSD License
9 which accompanies this distribution. The full text of the license may be found at
10 http://opensource.org/licenses/bsd-license.php
11
12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14
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