add in a new API HiiLibGetSupportedSecondaryLanguages

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5062 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qwang12 2008-04-14 06:26:44 +00:00
parent eaf539d00f
commit 33b3b83219
1 changed files with 23 additions and 2 deletions

View File

@ -353,6 +353,25 @@ HiiLibGetNextLanguage (
This function returns the list of supported languages, in the format specified This function returns the list of supported languages, in the format specified
in UEFI specification Appendix M. in UEFI specification Appendix M.
If HiiHandle is not a valid Handle in the default HII database, then ASSERT.
@param HiiHandle The HII package list handle.
@retval !NULL The supported languages.
@retval NULL If Supported Languages can not be retrived.
**/
CHAR8 *
EFIAPI
HiiLibGetSupportedLanguages (
IN EFI_HII_HANDLE HiiHandle
)
;
/**
This function returns the list of supported 2nd languages, in the format specified
in UEFI specification Appendix M.
If HiiHandle is not a valid Handle in the default HII database, then ASSERT. If HiiHandle is not a valid Handle in the default HII database, then ASSERT.
If not enough resource to complete the operation, then ASSERT. If not enough resource to complete the operation, then ASSERT.
@ -363,11 +382,13 @@ HiiLibGetNextLanguage (
**/ **/
CHAR8 * CHAR8 *
EFIAPI EFIAPI
HiiLibGetSupportedLanguages ( HiiLibGetSupportedSecondaryLanguages (
IN EFI_HII_HANDLE HiiHandle IN EFI_HII_HANDLE HiiHandle,
IN CONST CHAR8 *FirstLanguage
) )
; ;
/** /**
This function returns the number of supported languages on HiiHandle. This function returns the number of supported languages on HiiHandle.