]> git.proxmox.com Git - mirror_edk2.git/blob - Nt32Pkg/PlatformBdsDxe/CommonHeader.h
Convert NT32 to use PCD settings for UEFI Timeout and language variables as a POC...
[mirror_edk2.git] / Nt32Pkg / PlatformBdsDxe / 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 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13 **/
14
15 #ifndef __COMMON_HEADER_H_
16 #define __COMMON_HEADER_H_
17
18 #include <PiDxe.h>
19 #include <Common/MaxBbsEntries.h>
20 #include <Protocol/FormCallbackFramework.h>
21 #include <Protocol/DevicePath.h>
22 #include <Protocol/LoadFile.h>
23 #include <Protocol/CpuIo.h>
24 #include <Protocol/Bds.h>
25 #include <Protocol/DataHub.h>
26 #include <Protocol/FormBrowserFramework.h>
27 #include <Protocol/UgaDraw.h>
28 #include <Protocol/BlockIo.h>
29 #include <Protocol/ConsoleControl.h>
30 #include <Protocol/GenericMemoryTest.h>
31 #include <Protocol/GraphicsOutput.h>
32 #include <Protocol/SimpleFileSystem.h>
33 #include <Protocol/HiiFramework.h>
34 #include <Protocol/SerialIo.h>
35 #include <Protocol/LegacyBios.h>
36 #include <Protocol/Performance.h>
37 #include <Guid/PcAnsi.h>
38 #include <Guid/DataHubRecords.h>
39 #include <Guid/Bmp.h>
40 #include <Guid/FileInfo.h>
41 #include <Guid/BootState.h>
42 #include <Guid/FileSystemVolumeLabelInfo.h>
43 #include <Guid/GenericPlatformVariable.h>
44 #include <Guid/GlobalVariable.h>
45
46 #include <Library/DebugLib.h>
47 #include <Library/UefiLib.h>
48 #include <Library/UefiDriverEntryPoint.h>
49 #include <Library/BaseLib.h>
50 #include <Library/GraphicsLib.h>
51 #include <Library/DxeServicesTableLib.h>
52 #include <Library/PerformanceLib.h>
53 #include <Library/PrintLib.h>
54 #include <Library/IfrSupportLibFramework.h>
55 #include <Library/ReportStatusCodeLib.h>
56 #include <Library/HobLib.h>
57 #include <Library/EdkGenericBdsLib.h>
58 #include <Library/MemoryAllocationLib.h>
59 #include <Library/BaseMemoryLib.h>
60 #include <Library/UefiBootServicesTableLib.h>
61 #include <Library/UefiRuntimeServicesTableLib.h>
62 #include <Library/DevicePathLib.h>
63 #include <Library/HiiLibFramework.h>
64 #include <Library/PeCoffLib.h>
65 #include <Library/PcdLib.h>
66
67 //
68 // The rest of the includes
69 //
70 #include <Common/FirmwareRevision.h>
71
72 extern UINT8 PlatformBdsStrings[];
73
74 #endif