1 /** @file
2   Internal include file for UefiLib.
3 
4   Copyright (c) 2007 - 2008, Intel Corporation. All rights reserved.<BR>
5    This program and the accompanying materials
6    are licensed and made available under the terms and conditions of the BSD License
7    which accompanies this distribution. The full text of the license may be found at
8    http://opensource.org/licenses/bsd-license.php
9    THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10    WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11 **/
12 
13 #ifndef __UEFI_LIB_INTERNAL_H_
14 #define __UEFI_LIB_INTERNAL_H_
15 
16 
17 #include <FrameworkDxe.h>
18 #include <Protocol/DriverBinding.h>
19 #include <Protocol/ComponentName.h>
20 #include <Protocol/ComponentName2.h>
21 #include <Protocol/DriverConfiguration.h>
22 #include <Protocol/DriverConfiguration2.h>
23 #include <Protocol/DriverDiagnostics.h>
24 #include <Protocol/DriverDiagnostics2.h>
25 #include <Protocol/LoadedImage.h>
26 #include <Protocol/GraphicsOutput.h>
27 #include <Protocol/UgaDraw.h>
28 #include <Protocol/HiiFont.h>
29 
30 #include <Guid/EventGroup.h>
31 #include <Guid/EventLegacyBios.h>
32 #include <Guid/GlobalVariable.h>
33 #include <Library/UefiLib.h>
34 #include <Library/UefiBootServicesTableLib.h>
35 #include <Library/UefiRuntimeServicesTableLib.h>
36 #include <Library/BaseLib.h>
37 #include <Library/BaseMemoryLib.h>
38 #include <Library/DebugLib.h>
39 #include <Library/MemoryAllocationLib.h>
40 #include <Library/PcdLib.h>
41 #include <Library/PrintLib.h>
42 #include <Library/DevicePathLib.h>
43 
44 /**
45   An empty function to pass error checking of CreateEventEx ().
46 
47   This empty function ensures that EVT_NOTIFY_SIGNAL_ALL is error
48   checked correctly since it is now mapped into CreateEventEx() in UEFI 2.0.
49 
50   @param  Event                 Event whose notification function is being invoked.
51   @param  Context               Pointer to the notification function's context,
52                                 which is implementation-dependent.
53 
54 **/
55 VOID
56 EFIAPI
57 InternalEmptyFunction (
58   IN EFI_EVENT                Event,
59   IN VOID                     *Context
60   );
61 
62 #endif
63