2007-06-15 12:02:42 +02:00
|
|
|
/** @file
|
2008-12-01 15:42:26 +01:00
|
|
|
Internal include file for UefiLib.
|
2007-06-15 12:02:42 +02:00
|
|
|
|
2017-01-17 06:27:35 +01:00
|
|
|
Copyright (c) 2007 - 2017, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:04:02 +02:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2007-06-15 12:02:42 +02:00
|
|
|
**/
|
|
|
|
|
2008-12-01 15:42:26 +01:00
|
|
|
#ifndef __UEFI_LIB_INTERNAL_H_
|
|
|
|
#define __UEFI_LIB_INTERNAL_H_
|
2007-06-15 12:02:42 +02:00
|
|
|
|
2007-07-20 08:10:09 +02:00
|
|
|
|
2007-06-15 12:02:42 +02:00
|
|
|
#include <FrameworkDxe.h>
|
2007-09-17 06:13:54 +02:00
|
|
|
#include <Protocol/DriverBinding.h>
|
|
|
|
#include <Protocol/ComponentName.h>
|
|
|
|
#include <Protocol/ComponentName2.h>
|
|
|
|
#include <Protocol/DriverConfiguration.h>
|
2008-12-01 15:42:26 +01:00
|
|
|
#include <Protocol/DriverConfiguration2.h>
|
2007-09-17 06:13:54 +02:00
|
|
|
#include <Protocol/DriverDiagnostics.h>
|
|
|
|
#include <Protocol/DriverDiagnostics2.h>
|
2008-12-01 15:42:26 +01:00
|
|
|
#include <Protocol/LoadedImage.h>
|
|
|
|
#include <Protocol/GraphicsOutput.h>
|
|
|
|
#include <Protocol/UgaDraw.h>
|
|
|
|
#include <Protocol/HiiFont.h>
|
2007-09-17 06:13:54 +02:00
|
|
|
|
2007-06-28 07:58:38 +02:00
|
|
|
#include <Guid/EventGroup.h>
|
|
|
|
#include <Guid/EventLegacyBios.h>
|
2010-06-15 01:32:07 +02:00
|
|
|
#include <Guid/GlobalVariable.h>
|
2007-06-28 07:58:38 +02:00
|
|
|
#include <Library/UefiLib.h>
|
2007-06-15 12:02:42 +02:00
|
|
|
#include <Library/UefiBootServicesTableLib.h>
|
2010-06-15 01:32:07 +02:00
|
|
|
#include <Library/UefiRuntimeServicesTableLib.h>
|
2007-06-15 12:02:42 +02:00
|
|
|
#include <Library/BaseLib.h>
|
|
|
|
#include <Library/BaseMemoryLib.h>
|
|
|
|
#include <Library/DebugLib.h>
|
|
|
|
#include <Library/MemoryAllocationLib.h>
|
|
|
|
#include <Library/PcdLib.h>
|
|
|
|
#include <Library/PrintLib.h>
|
2008-11-11 16:44:41 +01:00
|
|
|
#include <Library/DevicePathLib.h>
|
2007-06-15 12:02:42 +02:00
|
|
|
|
|
|
|
#endif
|