diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-10-09 19:24:37 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-10-09 19:24:37 +0000 |
commit | 258cce138272fc013a723040691b37294e473a37 (patch) | |
tree | 1972e933d5e6e7413aca3a1d584499c0b71e477e /MdePkg/Include/Protocol/UnicodeCollation.h | |
parent | 1f08a159034549216eccfd533b50b712d944d844 (diff) | |
download | edk2-platforms-258cce138272fc013a723040691b37294e473a37.tar.xz |
Fix doxygen comment for structure and macro
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6098 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Protocol/UnicodeCollation.h')
-rw-r--r-- | MdePkg/Include/Protocol/UnicodeCollation.h | 35 |
1 files changed, 5 insertions, 30 deletions
diff --git a/MdePkg/Include/Protocol/UnicodeCollation.h b/MdePkg/Include/Protocol/UnicodeCollation.h index 696e587856..67d124fecb 100644 --- a/MdePkg/Include/Protocol/UnicodeCollation.h +++ b/MdePkg/Include/Protocol/UnicodeCollation.h @@ -168,35 +168,6 @@ BOOLEAN @par Protocol Description:
The EFI_UNICODE_COLLATION_PROTOCOL is used to perform case-insensitive
comparisons of Unicode strings.
-
- @param StriColl
- Performs a case-insensitive comparison of two Null-terminated Unicode strings.
-
- @param MetaiMatch
- Performs a case-insensitive comparison between a Null-terminated Unicode
- pattern string and a Null-terminated Unicode string. The pattern string
- can use the '?' wildcard to match any character, and the '*' wildcard to
- match any substring.
-
- @param StrLwr
- Converts all the Unicode characters in a Null-terminated Unicode string to
- lowercase Unicode characters.
-
- @param StrUpr
- Converts all the Unicode characters in a Null-terminated Unicode string to
- uppercase Unicode characters.
-
- @param FatToStr
- Converts an 8.3 FAT file name using an OEM character set to a Null-terminated
- Unicode string.
-
- @param StrToFat
- Converts a Null-terminated Unicode string to legal characters in a FAT
- filename using an OEM character set.
-
- @param Supported
- LanguagesA Null-terminated ASCII string array that contains one or more
- language codes. This array is specified in RFC 4646 format.
**/
struct _EFI_UNICODE_COLLATION_PROTOCOL {
//
@@ -212,7 +183,11 @@ struct _EFI_UNICODE_COLLATION_PROTOCOL { //
EFI_UNICODE_COLLATION_FATTOSTR FatToStr;
EFI_UNICODE_COLLATION_STRTOFAT StrToFat;
-
+
+ ///
+ /// LanguagesA Null-terminated ASCII string array that contains one or more
+ /// language codes. This array is specified in RFC 4646 format.
+ ///
CHAR8 *SupportedLanguages;
};
|