update codes per MdePkg doxgen review comments.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8526 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
vanjeff
2009-06-11 01:46:51 +00:00
parent 41f2ff0b85
commit f754f721bf
31 changed files with 135 additions and 142 deletions

View File

@@ -262,9 +262,9 @@ EFI_STATUS
bits 4..6 are the background color. All other bits are undefined
and must be zero. The valid Attributes are defined in this file.
@retval EFI_SUCCESS The attribute was set.
@retval EFI_SUCCESS The attribute was set.
@retval EFI_DEVICE_ERROR The device had an error and could not complete the request.
@retval EFI_UNSUPPORTED The attribute requested is not defined.
@retval EFI_UNSUPPORTED The attribute requested is not defined.
**/
typedef
@@ -342,35 +342,34 @@ EFI_STATUS
Mode Structure pointed to by Simple Text Out protocol.
**/
typedef struct {
///
/// The number of modes supported by QueryMode () and SetMode ().
///
///
/// The number of modes supported by QueryMode () and SetMode ().
///
INT32 MaxMode;
//
// current settings
//
///
/// The text mode of the output device(s).
///
///
/// The text mode of the output device(s).
///
INT32 Mode;
///
/// The current character output attribute
///
///
/// The current character output attribute
///
INT32 Attribute;
///
/// The cursor's column.
///
///
/// The cursor's column.
///
INT32 CursorColumn;
///
/// The cursor's row.
///
///
/// The cursor's row.
///
INT32 CursorRow;
///
/// The cursor is currently visbile or not.
///
///
/// The cursor is currently visbile or not.
///
BOOLEAN CursorVisible;
} EFI_SIMPLE_TEXT_OUTPUT_MODE;