2008-11-13 10:06:25 +01:00
|
|
|
/** @file
|
|
|
|
Internal include file for the HII Library instance.
|
|
|
|
|
|
|
|
Copyright (c) 2007, Intel Corporation
|
|
|
|
All rights reserved. This program and the accompanying materials
|
|
|
|
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.
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef __INTERNAL_HII_LIB_H__
|
|
|
|
#define __INTERNAL_HII_LIB_H__
|
|
|
|
|
|
|
|
#include <Uefi.h>
|
|
|
|
|
|
|
|
#include <Protocol/HiiDatabase.h>
|
|
|
|
#include <Protocol/HiiString.h>
|
|
|
|
#include <Protocol/DevicePath.h>
|
2009-04-13 08:05:15 +02:00
|
|
|
#include <Protocol/FormBrowser2.h>
|
2008-11-13 10:06:25 +01:00
|
|
|
|
2008-11-27 08:43:56 +01:00
|
|
|
#include <Guid/GlobalVariable.h>
|
|
|
|
|
2008-11-13 10:06:25 +01:00
|
|
|
#include <Library/BaseLib.h>
|
|
|
|
#include <Library/BaseMemoryLib.h>
|
|
|
|
#include <Library/HiiLib.h>
|
|
|
|
#include <Library/DebugLib.h>
|
|
|
|
#include <Library/MemoryAllocationLib.h>
|
|
|
|
#include <Library/UefiBootServicesTableLib.h>
|
|
|
|
#include <Library/DevicePathLib.h>
|
2009-04-13 08:05:15 +02:00
|
|
|
#include <Library/UefiHiiServicesLib.h>
|
2008-11-13 10:06:25 +01:00
|
|
|
#include <Library/UefiLib.h>
|
2009-04-13 08:05:15 +02:00
|
|
|
#include <Library/PrintLib.h>
|
2008-11-27 08:43:56 +01:00
|
|
|
#include <Library/PcdLib.h>
|
|
|
|
#include <Library/UefiRuntimeServicesTableLib.h>
|
2008-11-13 10:06:25 +01:00
|
|
|
|
|
|
|
#define HII_LIB_DEFAULT_STRING_SIZE 0x200
|
|
|
|
|
2009-03-17 08:20:59 +01:00
|
|
|
///
|
|
|
|
/// The size of a 3 character ISO639 language code.
|
|
|
|
///
|
|
|
|
#define ISO_639_2_ENTRY_SIZE 3
|
2008-11-13 10:06:25 +01:00
|
|
|
|
|
|
|
extern CONST EFI_HII_DATABASE_PROTOCOL *mHiiDatabaseProt;
|
|
|
|
extern CONST EFI_HII_STRING_PROTOCOL *mHiiStringProt;
|
|
|
|
|
|
|
|
/**
|
2009-04-14 12:47:19 +02:00
|
|
|
Extract Hii package list GUID for given HII handle.
|
2008-11-13 10:06:25 +01:00
|
|
|
|
2009-04-14 12:47:19 +02:00
|
|
|
If HiiHandle could not be found in the HII database, then ASSERT.
|
|
|
|
If Guid is NULL, then ASSERT.
|
|
|
|
|
|
|
|
@param Handle Hii handle
|
|
|
|
@param Guid Package list GUID
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS Successfully extract GUID from Hii database.
|
2008-11-13 10:06:25 +01:00
|
|
|
|
|
|
|
**/
|
2009-04-14 12:47:19 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
InternalHiiExtractGuidFromHiiHandle (
|
|
|
|
IN EFI_HII_HANDLE Handle,
|
|
|
|
OUT EFI_GUID *Guid
|
|
|
|
)
|
|
|
|
;
|
2008-11-13 10:06:25 +01:00
|
|
|
|
|
|
|
#endif
|