]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/CommonHeader.h
fd84c9321c714771b860353e55b0727bbb64c254
[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.
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 <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