/** @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 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define HII_LIB_DEFAULT_STRING_SIZE 0x200 /// /// The size of a 3 character ISO639 language code. /// #define ISO_639_2_ENTRY_SIZE 3 extern CONST EFI_HII_DATABASE_PROTOCOL *mHiiDatabaseProt; extern CONST EFI_HII_STRING_PROTOCOL *mHiiStringProt; /** Extract Hii package list GUID for given HII handle. 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. **/ EFI_STATUS EFIAPI InternalHiiExtractGuidFromHiiHandle ( IN EFI_HII_HANDLE Handle, OUT EFI_GUID *Guid ) ; #endif