summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MdePkg/Include/Protocol/SimpleTextOut.h39
1 files changed, 20 insertions, 19 deletions
diff --git a/MdePkg/Include/Protocol/SimpleTextOut.h b/MdePkg/Include/Protocol/SimpleTextOut.h
index 3a74416..f2d2203 100644
--- a/MdePkg/Include/Protocol/SimpleTextOut.h
+++ b/MdePkg/Include/Protocol/SimpleTextOut.h
@@ -340,36 +340,37 @@ EFI_STATUS
/**
@par Data Structure Description:
Mode Structure pointed to by Simple Text Out protocol.
-
- @param MaxMode
- The number of modes supported by QueryMode () and SetMode ().
-
- @param Mode
- The text mode of the output device(s).
-
- @param Attribute
- The current character output attribute
-
- @param CursorColumn
- The cursor's column.
-
- @param CursorRow
- The cursor's row.
-
- @param CursorVisible
- The cursor is currently visbile or not.
-
**/
typedef struct {
+///
+/// The number of modes supported by QueryMode () and SetMode ().
+///
INT32 MaxMode;
//
// current settings
//
+
+///
+/// The text mode of the output device(s).
+///
INT32 Mode;
+
+///
+/// The current character output attribute
+///
INT32 Attribute;
+///
+/// The cursor's column.
+///
INT32 CursorColumn;
+///
+/// The cursor's row.
+///
INT32 CursorRow;
+///
+/// The cursor is currently visbile or not.
+///
BOOLEAN CursorVisible;
} EFI_SIMPLE_TEXT_OUTPUT_MODE;