Refine doxygen comments

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8726 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
klu2
2009-07-02 18:06:45 +00:00
parent 2bda59e494
commit 4a13fda739
4 changed files with 23 additions and 23 deletions

View File

@ -146,15 +146,15 @@ typedef struct _VARIABLE_INFO_ENTRY VARIABLE_INFO_ENTRY;
/// This is an optional feature to dump all used variables in shell environment.
///
struct _VARIABLE_INFO_ENTRY {
VARIABLE_INFO_ENTRY *Next; ///> Pointer to next entry
EFI_GUID VendorGuid; ///> Guid of Variable
CHAR16 *Name; ///> Name of Variable
UINT32 Attributes; ///> Attributes of variable defined in UEFI spec
UINT32 ReadCount; ///> Number of times to read this variable
UINT32 WriteCount; ///> Number of times to write this variable
UINT32 DeleteCount; ///> Number of times to delete this variable
UINT32 CacheCount; ///> Number of times that cache hits this variable
BOOLEAN Volatile; ///> TRUE if volatile, FALSE if non-volatile
VARIABLE_INFO_ENTRY *Next; ///< Pointer to next entry
EFI_GUID VendorGuid; ///< Guid of Variable
CHAR16 *Name; ///< Name of Variable
UINT32 Attributes; ///< Attributes of variable defined in UEFI spec
UINT32 ReadCount; ///< Number of times to read this variable
UINT32 WriteCount; ///< Number of times to write this variable
UINT32 DeleteCount; ///< Number of times to delete this variable
UINT32 CacheCount; ///< Number of times that cache hits this variable
BOOLEAN Volatile; ///< TRUE if volatile, FALSE if non-volatile
};
#endif // _EFI_VARIABLE_H_