clean up the un-suitable ';' location when declaring the functions.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5820 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
vanjeff
2008-09-04 09:37:28 +00:00
parent 1f3a753ee6
commit ed66e1bc0d
134 changed files with 1345 additions and 2690 deletions

View File

@@ -43,8 +43,7 @@ HiiLibPreparePackageList (
IN UINTN NumberOfPackages,
IN CONST EFI_GUID *GuidId,
...
)
;
);
/**
This function allocates pool for an EFI_HII_PACKAGE_LIST structure
@@ -78,8 +77,7 @@ HiiLibAddPackages (
IN EFI_HANDLE DriverHandle, OPTIONAL
OUT EFI_HII_HANDLE *HiiHandle,
...
)
;
);
/**
Removes a package list from the default HII database.
@@ -95,8 +93,7 @@ VOID
EFIAPI
HiiLibRemovePackages (
IN EFI_HII_HANDLE HiiHandle
)
;
);
/**
This function adds the string into String Package of each language
@@ -122,8 +119,7 @@ HiiLibNewString (
IN EFI_HII_HANDLE PackageList,
OUT EFI_STRING_ID *StringId,
IN CONST EFI_STRING String
)
;
);
/**
This function update the specified string in String Package of each language
@@ -148,8 +144,7 @@ HiiLibSetString (
IN EFI_HII_HANDLE PackageList,
IN EFI_STRING_ID StringId,
IN CONST EFI_STRING String
)
;
);
/**
This function try to retrieve string from String package of current language.
@@ -182,8 +177,7 @@ HiiLibGetString (
IN EFI_STRING_ID StringId,
OUT EFI_STRING String,
IN OUT UINTN *StringSize
)
;
);
/**
Get string specified by StringId form the HiiHandle. The caller
@@ -209,8 +203,7 @@ HiiLibGetStringFromHandle (
IN EFI_HII_HANDLE HiiHandle,
IN EFI_STRING_ID StringId,
OUT EFI_STRING *String
)
;
);
/**
Get the string given the StringId and String package Producer's Guid. The caller
@@ -234,8 +227,7 @@ HiiLibGetStringFromToken (
IN EFI_GUID *ProducerGuid,
IN EFI_STRING_ID StringId,
OUT EFI_STRING *String
)
;
);
/**
Determines the handles that are currently active in the database.
@@ -257,8 +249,7 @@ EFIAPI
HiiLibGetHiiHandles (
IN OUT UINTN *HandleBufferLength,
OUT EFI_HII_HANDLE **HiiHandleBuffer
)
;
);
/**
Extract Hii package list GUID for given HII handle.
@@ -277,8 +268,7 @@ EFIAPI
HiiLibExtractGuidFromHiiHandle (
IN EFI_HII_HANDLE Handle,
OUT EFI_GUID *Guid
)
;
);
/**
Find HII Handle in the default HII database associated with given Device Path.
@@ -297,8 +287,7 @@ EFI_HII_HANDLE
EFIAPI
HiiLibDevicePathToHiiHandle (
IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
)
;
);
/**
@@ -320,8 +309,7 @@ EFI_STATUS
EFIAPI
HiiLibGetCurrentLanguage (
OUT CHAR8 *Lang
)
;
);
/**
Get next language from language code list (with separator ';').
@@ -340,8 +328,7 @@ EFIAPI
HiiLibGetNextLanguage (
IN OUT CHAR8 **LangCode,
OUT CHAR8 *Lang
)
;
);
/**
This function returns the list of supported languages, in the format specified
@@ -359,8 +346,7 @@ CHAR8 *
EFIAPI
HiiLibGetSupportedLanguages (
IN EFI_HII_HANDLE HiiHandle
)
;
);
/**
This function returns the list of supported 2nd languages, in the format specified
@@ -380,8 +366,7 @@ EFIAPI
HiiLibGetSupportedSecondaryLanguages (
IN EFI_HII_HANDLE HiiHandle,
IN CONST CHAR8 *FirstLanguage
)
;
);
/**
@@ -399,8 +384,7 @@ UINT16
EFIAPI
HiiLibGetSupportedLanguageNumber (
IN EFI_HII_HANDLE HiiHandle
)
;
);
/**
Exports the contents of one or all package lists in the HII database into a buffer.
@@ -426,8 +410,7 @@ HiiLibExportPackageLists (
IN EFI_HII_HANDLE Handle,
OUT EFI_HII_PACKAGE_LIST_HEADER **PackageListHeader,
OUT UINTN *PackageListSize
)
;
);
EFI_STATUS
EFIAPI
@@ -436,8 +419,7 @@ HiiLibListPackageLists (
IN CONST EFI_GUID *PackageGuid,
IN OUT UINTN *HandleBufferLength,
OUT EFI_HII_HANDLE **Handle
)
;
);
/**
Convert language code from RFC3066 to ISO639-2.
@@ -463,8 +445,7 @@ EFIAPI
ConvertRfc3066LanguageToIso639Language (
IN CHAR8 *LanguageRfc3066,
OUT CHAR8 *LanguageIso639
)
;
);
/**
Convert language code from ISO639-2 to RFC3066.
@@ -490,8 +471,7 @@ EFIAPI
ConvertIso639LanguageToRfc3066Language (
IN CONST CHAR8 *LanguageIso639,
OUT CHAR8 *LanguageRfc3066
)
;
);
/**
Convert language code list from RFC3066 to ISO639-2, e.g. "en-US;fr-FR" will
@@ -508,7 +488,6 @@ CHAR8 *
EFIAPI
Rfc3066ToIso639 (
CHAR8 *SupportedLanguages
)
;
);
#endif