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
|
|
|
|
2010-04-23 17:52:13 +02:00
|
|
|
Copyright (c) 2007 - 2008, Intel Corporation. All rights reserved.<BR>
|
|
|
|
This program and the accompanying materials
|
2008-12-01 15:42:26 +01:00
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
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
|