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
|
|
|
|
2010-04-23 18:37:43 +02:00
|
|
|
Copyright (c) 2007 - 2008, Intel Corporation. All rights reserved.<BR>
|
|
|
|
This program and the accompanying materials
|
2007-06-22 08:57:39 +02: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
|
2010-06-25 23:56:02 +02:00
|
|
|
http://opensource.org/licenses/bsd-license.php.
|
2007-06-22 08:57:39 +02:00
|
|
|
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-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
|
|
|
|
2016-03-22 17:01:22 +01:00
|
|
|
/**
|
|
|
|
An empty function to pass error checking of CreateEventEx ().
|
|
|
|
|
|
|
|
This empty function ensures that EVT_NOTIFY_SIGNAL_ALL is error
|
|
|
|
checked correctly since it is now mapped into CreateEventEx() in UEFI 2.0.
|
|
|
|
|
|
|
|
@param Event Event whose notification function is being invoked.
|
|
|
|
@param Context The pointer to the notification function's context,
|
|
|
|
which is implementation-dependent.
|
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
EFIAPI
|
|
|
|
InternalEmptyFunction (
|
|
|
|
IN EFI_EVENT Event,
|
|
|
|
IN VOID *Context
|
|
|
|
);
|
|
|
|
|
2007-06-22 08:57:39 +02:00
|
|
|
#endif
|