]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/CommonHeader.h
Update to BSD license header.
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Isa / Ps2KeyboardDxe / 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. 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 <Framework/StatusCode.h>
26
27 //
28 // The protocols, PPI and GUID defintions for this module
29 //
30 #include <Protocol/SimpleTextIn.h>
31 #include <Protocol/IsaIo.h>
32 #include <Protocol/DevicePath.h>
33 #include <Protocol/Ps2Policy.h>
34
35 //
36 // The Library classes this module consumes
37 //
38 #include <Library/UefiDriverEntryPoint.h>
39 #include <Library/UefiLib.h>
40 #include <Library/UefiBootServicesTableLib.h>
41 #include <Library/ReportStatusCodeLib.h>
42 #include <Library/DebugLib.h>
43 #include <Library/UefiRuntimeServicesTableLib.h>
44 #include <Library/MemoryAllocationLib.h>
45 //
46 // Driver Binding Externs
47 //
48 extern EFI_DRIVER_BINDING_PROTOCOL gKeyboardControllerDriver;
49 extern EFI_COMPONENT_NAME_PROTOCOL gPs2KeyboardComponentName;
50
51 #endif