summaryrefslogtreecommitdiff
path: root/MdePkg/Include/Protocol/SimpleTextOut.h
diff options
context:
space:
mode:
authorvanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2009-06-11 01:46:51 +0000
committervanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2009-06-11 01:46:51 +0000
commitf754f721bf10508ca15c5c9243caa39c765662cf (patch)
treea30263d31dbc5cbe0d472c1ae870702d19111892 /MdePkg/Include/Protocol/SimpleTextOut.h
parent41f2ff0b85f3118238aeac8dfda3a657340519a5 (diff)
downloadedk2-platforms-f754f721bf10508ca15c5c9243caa39c765662cf.tar.xz
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
Diffstat (limited to 'MdePkg/Include/Protocol/SimpleTextOut.h')
-rw-r--r--MdePkg/Include/Protocol/SimpleTextOut.h41
1 files changed, 20 insertions, 21 deletions
diff --git a/MdePkg/Include/Protocol/SimpleTextOut.h b/MdePkg/Include/Protocol/SimpleTextOut.h
index f2d22030ed..b75e52a696 100644
--- a/MdePkg/Include/Protocol/SimpleTextOut.h
+++ b/MdePkg/Include/Protocol/SimpleTextOut.h
@@ -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;