37 lines
1.2 KiB
C
37 lines
1.2 KiB
C
/** @file
|
|
Internal include file for the HII Extension Library instance.
|
|
|
|
;******************************************************************************
|
|
;* Copyright (c) 2013 - 2016, Insyde Software Corp. All Rights Reserved.
|
|
;*
|
|
;* You may not reproduce, distribute, publish, display, perform, modify, adapt,
|
|
;* transmit, broadcast, present, recite, release, license or otherwise exploit
|
|
;* any part of this publication in any form, by any means, without the prior
|
|
;* written permission of Insyde Software Corporation.
|
|
;*
|
|
;******************************************************************************
|
|
*/
|
|
|
|
#ifndef __INTERNAL_HII_EX_LIB_H__
|
|
#define __INTERNAL_HII_EX_LIB_H__
|
|
|
|
#include <Uefi.h>
|
|
|
|
#include <Guid/InsydeModuleHii.h>
|
|
#include <Guid/MdeModuleHii.h>
|
|
#include <Guid/GlobalVariable.h>
|
|
#include <Protocol/HiiDatabase.h>
|
|
|
|
#include <Library/BaseLib.h>
|
|
#include <Library/BaseMemoryLib.h>
|
|
#include <Library/DebugLib.h>
|
|
#include <Library/MemoryAllocationLib.h>
|
|
#include <Library/UefiBootServicesTableLib.h>
|
|
#include <Library/UefiLib.h>
|
|
#include <Library/UefiRuntimeServicesTableLib.h>
|
|
#include <Library/HiiLib.h>
|
|
#include <Library/HiiExLib.h>
|
|
#include <Library/UefiHiiServicesLib.h>
|
|
|
|
#endif
|