]>
Commit | Line | Data |
---|---|---|
bc11b829 | 1 | /**@file\r |
2 | Common header file shared by all source files.\r | |
3 | \r | |
4 | This file includes package header files, library classes and protocol, PPI & GUID definitions.\r | |
5 | \r | |
6 | Copyright (c) 2006 - 2007, Intel Corporation\r | |
7 | All rights reserved. This program and the accompanying materials\r | |
8 | are licensed and made available under the terms and conditions of the BSD License\r | |
9 | which accompanies this distribution. The full text of the license may be found at\r | |
10 | http://opensource.org/licenses/bsd-license.php\r | |
11 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
12 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
13 | **/\r | |
14 | \r | |
15 | #ifndef __COMMON_HEADER_H_\r | |
16 | #define __COMMON_HEADER_H_\r | |
17 | \r | |
18 | \r | |
19 | //\r | |
20 | // The package level header files this module uses\r | |
21 | //\r | |
22 | #include <Dxe.h>\r | |
23 | #include <PiDxe.h>\r | |
24 | #include <EdkDxe.h>\r | |
25 | #include <WinNtDxe.h>\r | |
26 | //\r | |
27 | // The protocols, PPI and GUID defintions for this module\r | |
28 | //\r | |
29 | #include <Protocol/FormCallback.h>\r | |
30 | #include <Guid/FileSystemVolumeLabelInfo.h>\r | |
31 | #include <Protocol/DevicePath.h>\r | |
32 | #include <Guid/BootState.h>\r | |
33 | #include <Protocol/LoadFile.h>\r | |
34 | #include <Protocol/CpuIo.h>\r | |
35 | #include <Guid/FileInfo.h>\r | |
36 | #include <Protocol/Bds.h>\r | |
37 | #include <Protocol/DataHub.h>\r | |
38 | #include <Protocol/FormBrowser.h>\r | |
39 | #include <Guid/Bmp.h>\r | |
40 | #include <Protocol/UgaDraw.h>\r | |
41 | #include <Protocol/BlockIo.h>\r | |
42 | #include <Guid/GlobalVariable.h>\r | |
43 | #include <Protocol/ConsoleControl.h>\r | |
44 | #include <Protocol/GenericMemoryTest.h>\r | |
45 | #include <Protocol/GraphicsOutput.h>\r | |
46 | #include <Protocol/SimpleFileSystem.h>\r | |
47 | #include <Protocol/Hii.h>\r | |
48 | #include <Guid/GenericPlatformVariable.h>\r | |
49 | #include <Guid/FlashMapHob.h>\r | |
50 | #include <Protocol/SerialIo.h>\r | |
51 | #include <Protocol/LegacyBios.h>\r | |
52 | //\r | |
53 | // The Library classes this module consumes\r | |
54 | //\r | |
55 | #include <Library/DebugLib.h>\r | |
56 | #include <Library/UefiLib.h>\r | |
57 | #include <Library/UefiDriverEntryPoint.h>\r | |
58 | #include <Library/BaseLib.h>\r | |
59 | #include <Library/EdkGraphicsLib.h>\r | |
60 | #include <Library/DxeServicesTableLib.h>\r | |
61 | #include <Library/PerformanceLib.h>\r | |
62 | #include <Library/PrintLib.h>\r | |
63 | #include <Library/IfrSupportLibFramework.h>\r | |
64 | #include <Library/ReportStatusCodeLib.h>\r | |
65 | #include <Library/HobLib.h>\r | |
66 | #include <Library/EdkGenericBdsLib.h>\r | |
67 | #include <Library/MemoryAllocationLib.h>\r | |
68 | #include <Library/BaseMemoryLib.h>\r | |
69 | #include <Library/UefiBootServicesTableLib.h>\r | |
70 | #include <Library/UefiRuntimeServicesTableLib.h>\r | |
71 | #include <Library/DevicePathLib.h>\r | |
72 | #include <Library/HiiLib.h>\r | |
73 | #include <Library/PeCoffLib.h>\r | |
74 | \r | |
75 | #endif\r |