summaryrefslogtreecommitdiff
path: root/IntelFrameworkPkg/Include
diff options
context:
space:
mode:
authoreric_tian <eric_tian@6f19259b-4bc3-4df7-8a09-765794883524>2009-07-07 07:49:14 +0000
committereric_tian <eric_tian@6f19259b-4bc3-4df7-8a09-765794883524>2009-07-07 07:49:14 +0000
commitee09c93f45f0bf6f3d8fcc51bc99d87baf248525 (patch)
treed4b32874ba3293a6962034c2ef3cae42350202b8 /IntelFrameworkPkg/Include
parent574bb8b749fc6841f35293fd89c3496baeef900c (diff)
downloadedk2-platforms-ee09c93f45f0bf6f3d8fcc51bc99d87baf248525.tar.xz
change comment style from 3 line to 1 line
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8784 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'IntelFrameworkPkg/Include')
-rw-r--r--IntelFrameworkPkg/Include/Guid/StatusCodeDataTypeId.h66
1 files changed, 16 insertions, 50 deletions
diff --git a/IntelFrameworkPkg/Include/Guid/StatusCodeDataTypeId.h b/IntelFrameworkPkg/Include/Guid/StatusCodeDataTypeId.h
index ce82e4ff3f..b10d1c5ec8 100644
--- a/IntelFrameworkPkg/Include/Guid/StatusCodeDataTypeId.h
+++ b/IntelFrameworkPkg/Include/Guid/StatusCodeDataTypeId.h
@@ -35,65 +35,31 @@
#pragma pack(1)
typedef enum {
- ///
- /// A NULL-terminated ASCII string.
- ///
- EfiStringAscii,
- ///
- /// A double NULL-terminated Unicode string.
- ///
- EfiStringUnicode,
- ///
- /// An EFI_STATUS_CODE_STRING_TOKEN representing the string. The actual string
- /// can be obtained by querying the HII Database.
- ///
- EfiStringToken
+ EfiStringAscii, ///< A NULL-terminated ASCII string.
+ EfiStringUnicode, ///< A double NULL-terminated Unicode string.
+ EfiStringToken ///< An EFI_STATUS_CODE_STRING_TOKEN representing the string.
+ ///< The actual string can be obtained by querying the HII Database.
} EFI_STRING_TYPE;
typedef struct {
- ///
- /// The HII handle of the string pack, which can be used to retrieve the string.
- /// It is a dynamic value that may not be the same for different boots.
- ///
- FRAMEWORK_EFI_HII_HANDLE Handle;
- ///
- /// When combined with the HII handle, the string token can be used to retrieve the
- /// string.
- ///
- STRING_REF Token;
+ FRAMEWORK_EFI_HII_HANDLE Handle; ///< The HII handle of the string pack, which can be
+ ///< used to retrieve the string. It is a dynamic value
+ ///< that may not be the same for different boots.
+ STRING_REF Token; ///< When combined with the HII handle, the string
+ ///< token can be used to retrieve the string.
+
} EFI_STATUS_CODE_STRING_TOKEN;
typedef union {
- ///
- /// ASCII formatted string.
- ///
- CHAR8 *Ascii;
- ///
- /// Unicode formatted string.
- ///
- CHAR16 *Unicode;
- ///
- /// HII handle/token pair.
- ///
- EFI_STATUS_CODE_STRING_TOKEN Hii;
+ CHAR8 *Ascii; ///< ASCII formatted string.
+ CHAR16 *Unicode; ///< Unicode formatted string.
+ EFI_STATUS_CODE_STRING_TOKEN Hii; ///< HII handle/token pair.
} EFI_STATUS_CODE_STRING;
typedef struct {
- ///
- /// The data header identifying the data. The HeaderSize should be sizeof
- /// (EFI_STATUS_CODE_DATA).
- /// The Size should be sizeof(EFI_STATUS_CODE_STRING_DATA) - HeaderSize.
- /// The Type should be EFI_STATUS_CODE_DATA_TYPE_STRING_GUID.
- ///
- EFI_STATUS_CODE_DATA DataHeader;
- ///
- /// Specifies if the string is ASCII or Unicode.
- ///
- EFI_STRING_TYPE StringType;
- ///
- /// A pointer to a null-terminated ASCII or Unicode string.
- ///
- EFI_STATUS_CODE_STRING String;
+ EFI_STATUS_CODE_DATA DataHeader; ///< The data header identifying the data.
+ EFI_STRING_TYPE StringType; ///< Specifies if the string is ASCII or Unicode.
+ EFI_STATUS_CODE_STRING String; ///< A pointer to a null-terminated ASCII or Unicode string.
} EFI_STATUS_CODE_STRING_DATA;
#pragma pack()