]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Library/UefiHiiLib/InternalHiiLib.h
Add INF extension Information
[mirror_edk2.git] / MdeModulePkg / Library / UefiHiiLib / InternalHiiLib.h
CommitLineData
08e4b3cf 1/** @file\r
2 Internal include file for the HII Library instance.\r
3\r
4 Copyright (c) 2007, Intel Corporation \r
5 All rights reserved. This program and the accompanying materials \r
6 are licensed and made available under the terms and conditions of the BSD License \r
7 which accompanies this distribution. The full text of the license may be found at \r
8 http://opensource.org/licenses/bsd-license.php \r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
12\r
13**/\r
14\r
15#ifndef __INTERNAL_HII_LIB_H__\r
16#define __INTERNAL_HII_LIB_H__\r
17\r
18#include <Uefi.h>\r
19\r
20#include <Protocol/HiiDatabase.h>\r
21#include <Protocol/HiiString.h>\r
22#include <Protocol/DevicePath.h>\r
23\r
11e92503 24#include <Guid/GlobalVariable.h>\r
25\r
08e4b3cf 26#include <Library/BaseLib.h>\r
27#include <Library/BaseMemoryLib.h>\r
28#include <Library/HiiLib.h>\r
29#include <Library/DebugLib.h>\r
30#include <Library/MemoryAllocationLib.h>\r
31#include <Library/UefiBootServicesTableLib.h>\r
32#include <Library/DevicePathLib.h>\r
33#include <Library/UefiLib.h>\r
11e92503 34#include <Library/PcdLib.h>\r
35#include <Library/UefiRuntimeServicesTableLib.h>\r
08e4b3cf 36\r
37#define HII_LIB_DEFAULT_STRING_SIZE 0x200\r
38\r
39\r
40extern CONST EFI_HII_DATABASE_PROTOCOL *mHiiDatabaseProt;\r
41extern CONST EFI_HII_STRING_PROTOCOL *mHiiStringProt;\r
42\r
43/**\r
44 This function check if the Hii Handle is a valid handle registered\r
45 in the HII database.\r
46\r
47 @param HiiHandle The HII Handle.\r
48\r
49 @retval TRUE If it is a valid HII handle.\r
50 @retval FALSE If it is a invalid HII handle.\r
51**/\r
52BOOLEAN\r
53IsHiiHandleRegistered (\r
54 EFI_HII_HANDLE HiiHandle\r
55 );\r
56\r
57#endif\r