1 | /** @file
|
---|
2 | Internal include file for UefiLib.
|
---|
3 |
|
---|
4 | Copyright (c) 2007 - 2017, Intel Corporation. All rights reserved.<BR>
|
---|
5 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
6 | **/
|
---|
7 |
|
---|
8 | #ifndef __UEFI_LIB_INTERNAL_H_
|
---|
9 | #define __UEFI_LIB_INTERNAL_H_
|
---|
10 |
|
---|
11 |
|
---|
12 | #include <Uefi.h>
|
---|
13 | #include <Protocol/DriverBinding.h>
|
---|
14 | #include <Protocol/ComponentName.h>
|
---|
15 | #include <Protocol/ComponentName2.h>
|
---|
16 | #include <Protocol/DriverConfiguration.h>
|
---|
17 | #include <Protocol/DriverConfiguration2.h>
|
---|
18 | #include <Protocol/DriverDiagnostics.h>
|
---|
19 | #include <Protocol/DriverDiagnostics2.h>
|
---|
20 | #include <Protocol/LoadedImage.h>
|
---|
21 | #include <Protocol/GraphicsOutput.h>
|
---|
22 | #include <Protocol/UgaDraw.h>
|
---|
23 | #include <Protocol/HiiFont.h>
|
---|
24 |
|
---|
25 | #include <Guid/EventGroup.h>
|
---|
26 | #include <Guid/EventLegacyBios.h>
|
---|
27 | #include <Guid/GlobalVariable.h>
|
---|
28 | #include <Library/UefiLib.h>
|
---|
29 | #include <Library/UefiBootServicesTableLib.h>
|
---|
30 | #include <Library/UefiRuntimeServicesTableLib.h>
|
---|
31 | #include <Library/BaseLib.h>
|
---|
32 | #include <Library/BaseMemoryLib.h>
|
---|
33 | #include <Library/DebugLib.h>
|
---|
34 | #include <Library/MemoryAllocationLib.h>
|
---|
35 | #include <Library/PcdLib.h>
|
---|
36 | #include <Library/PrintLib.h>
|
---|
37 | #include <Library/DevicePathLib.h>
|
---|
38 |
|
---|
39 | #endif
|
---|