summaryrefslogtreecommitdiff
path: root/MdePkg/Include
diff options
context:
space:
mode:
authorjcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524>2009-06-10 19:43:17 +0000
committerjcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524>2009-06-10 19:43:17 +0000
commit41f2ff0b85f3118238aeac8dfda3a657340519a5 (patch)
treef5c2fe8935597c4a93f9bd9ef2658e77b4daf616 /MdePkg/Include
parentfa62b7ce53632e73272fd733116a0521b985d595 (diff)
downloadedk2-41f2ff0b85f3118238aeac8dfda3a657340519a5.zip
edk2-41f2ff0b85f3118238aeac8dfda3a657340519a5.tar.gz
edk2-41f2ff0b85f3118238aeac8dfda3a657340519a5.tar.bz2
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8525 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include')
-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;