mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Don't return characters is key is up
svn path=/trunk/; revision=12853
This commit is contained in:
parent
e228aadfe5
commit
528b35b1df
2 changed files with 20 additions and 15 deletions
|
@ -1,5 +1,4 @@
|
|||
/* $Id$
|
||||
*
|
||||
/*
|
||||
* reactos/subsys/csrss/win32csr/conio.c
|
||||
*
|
||||
* Console I/O functions
|
||||
|
@ -1127,7 +1126,7 @@ ConioProcessChar(PCSRSS_CONSOLE Console,
|
|||
if (0 == (Console->Mode & ENABLE_LINE_INPUT)
|
||||
|| Console->EarlyReturn
|
||||
|| ('\n' == KeyEventRecord->InputEvent.Event.KeyEvent.uChar.AsciiChar
|
||||
&& ! KeyEventRecord->InputEvent.Event.KeyEvent.bKeyDown))
|
||||
&& KeyEventRecord->InputEvent.Event.KeyEvent.bKeyDown))
|
||||
{
|
||||
if ('\n' == KeyEventRecord->InputEvent.Event.KeyEvent.uChar.AsciiChar)
|
||||
{
|
||||
|
|
|
@ -16,8 +16,7 @@
|
|||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
/* $Id$
|
||||
*
|
||||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
* PURPOSE: Messages
|
||||
|
@ -342,16 +341,23 @@ int STDCALL ToUnicodeEx( UINT wVirtKey,
|
|||
HKL dwhkl ) {
|
||||
int ToUnicodeResult = 0;
|
||||
|
||||
IntLockQueueState;
|
||||
ToUnicodeResult = ToUnicodeInner( wVirtKey,
|
||||
wScanCode,
|
||||
lpKeyState,
|
||||
pwszBuff,
|
||||
cchBuff,
|
||||
wFlags,
|
||||
PsGetWin32Thread() ?
|
||||
PsGetWin32Thread()->KeyboardLayout : 0 );
|
||||
IntUnLockQueueState;
|
||||
if (0 == (lpKeyState[wVirtKey] & KS_DOWN_BIT))
|
||||
{
|
||||
ToUnicodeResult = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
IntLockQueueState;
|
||||
ToUnicodeResult = ToUnicodeInner( wVirtKey,
|
||||
wScanCode,
|
||||
lpKeyState,
|
||||
pwszBuff,
|
||||
cchBuff,
|
||||
wFlags,
|
||||
PsGetWin32Thread() ?
|
||||
PsGetWin32Thread()->KeyboardLayout : 0 );
|
||||
IntUnLockQueueState;
|
||||
}
|
||||
|
||||
return ToUnicodeResult;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue