summaryrefslogtreecommitdiff
path: root/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitter.h
diff options
context:
space:
mode:
authorvanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2009-01-14 07:47:48 +0000
committervanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2009-01-14 07:47:48 +0000
commitf890b1e053c20f386fbd6bc9a8db39b5104a5777 (patch)
tree277cb3c78f6fa16595cc735b76a70741ff37c833 /MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitter.h
parentad951a37141f8c4348b0d877d624a69f1a27a58f (diff)
downloadedk2-f890b1e053c20f386fbd6bc9a8db39b5104a5777.zip
edk2-f890b1e053c20f386fbd6bc9a8db39b5104a5777.tar.gz
edk2-f890b1e053c20f386fbd6bc9a8db39b5104a5777.tar.bz2
1.fixed one bug to 'reconnect -r' when running 4 times.
2.Code scrub. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7269 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitter.h')
-rw-r--r--MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitter.h40
1 files changed, 20 insertions, 20 deletions
diff --git a/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitter.h b/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitter.h
index 5ff5e6a..5c5d691 100644
--- a/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitter.h
+++ b/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitter.h
@@ -1425,7 +1425,7 @@ ConSplitterTextInSetState (
successfully.
@retval EFI_OUT_OF_RESOURCES Unable to allocate resources for necesssary data
structures.
- @retval EFI_INVALID_PARAMETER KeyData or NotifyHandle is NULL.
+ @retval EFI_INVALID_PARAMETER KeyData or KeyNotificationFunction or NotifyHandle is NULL.
**/
EFI_STATUS
@@ -1459,7 +1459,8 @@ ConSplitterTextInUnregisterKeyNotify (
);
/**
- This event agregates all the events of the ConIn devices in the spliter.
+ This event aggregates all the events of the ConIn devices in the spliter.
+
If the ConIn is password locked then return.
If any events of physical ConIn devices are signaled, signal the ConIn
spliter event. This will cause the calling code to call
@@ -1490,10 +1491,12 @@ ConSpliterConssoleControlStdInLocked (
);
/**
- This timer event will fire when StdIn is locked. It will check the key
- sequence on StdIn to see if it matches the password. Any error in the
- password will cause the check to reset. As long a mConIn.PasswordEnabled is
- TRUE the StdIn splitter will not report any input.
+ Record and check key sequence on StdIn.
+
+ This timer event will fire when StdIn is locked. It will record the key sequence
+ on StdIn and also check to see if it matches the password. Any error in the
+ password will cause the check to reset. As long as a mConIn.PasswordEnabled is
+ TRUE, the StdIn splitter will not report any input.
@param Event The Event this notify function registered to.
@param Context Pointer to the context data registerd to the
@@ -2197,20 +2200,17 @@ DevNullTextOutClearScreen (
);
/**
- Sets the current coordinates of the cursor position.
+ Sets the current coordinates of the cursor position on NULL device.
- @param Private Text Out Splitter pointer.
- @param Column
- @param Row the position to set the cursor to. Must be
- greater than or equal to zero and less than the
- number of columns and rows by QueryMode ().
+ @param Private Text Out Splitter pointer.
+ @param Column The column position to set the cursor to. Must be
+ greater than or equal to zero and less than the
+ number of columns by QueryMode ().
+ @param Row The row position to set the cursor to. Must be
+ greater than or equal to zero and less than the
+ number of rows by QueryMode ().
- @retval EFI_SUCCESS The operation completed successfully.
- @retval EFI_DEVICE_ERROR The device had an error and could not complete
- the request.
- @retval EFI_UNSUPPORTED The output device is not in a valid text mode, or
- the cursor position is invalid for the current
- mode.
+ @retval EFI_SUCCESS Always returned.
**/
EFI_STATUS
@@ -2221,13 +2221,13 @@ DevNullTextOutSetCursorPosition (
);
/**
- Set cursor visibility property.
+ Set cursor visibility property on NULL device.
@param Private Text Out Splitter pointer.
@param Visible If TRUE, the cursor is set to be visible, If
FALSE, the cursor is set to be invisible.
- @retval EFI_SUCCESS Returns always.
+ @retval EFI_SUCCESS Always returned.
**/
EFI_STATUS