2008-07-25 14:21:57 +02:00
|
|
|
/** @file
|
2007-06-30 01:22:13 +02:00
|
|
|
Internal include file for UefiLib.
|
2007-06-22 08:57:39 +02:00
|
|
|
|
2017-01-17 06:26:18 +01:00
|
|
|
Copyright (c) 2007 - 2017, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:06:00 +02:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2007-06-22 08:57:39 +02:00
|
|
|
**/
|
|
|
|
|
2007-06-30 01:22:13 +02:00
|
|
|
#ifndef __UEFI_LIB_INTERNAL_H_
|
|
|
|
#define __UEFI_LIB_INTERNAL_H_
|
2007-06-22 08:57:39 +02:00
|
|
|
|
|
|
|
|
2008-08-30 16:09:38 +02:00
|
|
|
#include <Uefi.h>
|
2007-06-22 08:57:39 +02:00
|
|
|
#include <Protocol/DriverBinding.h>
|
|
|
|
#include <Protocol/ComponentName.h>
|
2007-06-22 18:22:26 +02:00
|
|
|
#include <Protocol/ComponentName2.h>
|
2007-06-22 08:57:39 +02:00
|
|
|
#include <Protocol/DriverConfiguration.h>
|
2008-12-01 15:40:23 +01:00
|
|
|
#include <Protocol/DriverConfiguration2.h>
|
2007-06-22 08:57:39 +02:00
|
|
|
#include <Protocol/DriverDiagnostics.h>
|
2007-06-22 18:22:26 +02:00
|
|
|
#include <Protocol/DriverDiagnostics2.h>
|
2007-09-04 08:11:47 +02:00
|
|
|
#include <Protocol/LoadedImage.h>
|
2008-11-20 04:08:28 +01:00
|
|
|
#include <Protocol/GraphicsOutput.h>
|
|
|
|
#include <Protocol/UgaDraw.h>
|
|
|
|
#include <Protocol/HiiFont.h>
|
2007-09-04 08:11:47 +02:00
|
|
|
|
2007-06-22 08:57:39 +02:00
|
|
|
#include <Guid/EventGroup.h>
|
|
|
|
#include <Guid/EventLegacyBios.h>
|
2009-03-24 15:18:13 +01:00
|
|
|
#include <Guid/GlobalVariable.h>
|
2007-06-22 08:57:39 +02:00
|
|
|
#include <Library/UefiLib.h>
|
|
|
|
#include <Library/UefiBootServicesTableLib.h>
|
2009-03-24 15:18:13 +01:00
|
|
|
#include <Library/UefiRuntimeServicesTableLib.h>
|
2007-06-22 08:57:39 +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:39:02 +01:00
|
|
|
#include <Library/DevicePathLib.h>
|
2007-09-04 08:11:47 +02:00
|
|
|
|
2007-06-22 08:57:39 +02:00
|
|
|
#endif
|