mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Silence debug messages
svn path=/trunk/; revision=6775
This commit is contained in:
parent
415bdc5e7c
commit
efdbadfbef
1 changed files with 11 additions and 11 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: conio.c,v 1.57 2003/11/24 00:22:52 arty Exp $
|
||||
/* $Id: conio.c,v 1.58 2003/11/24 14:04:36 gvg Exp $
|
||||
*
|
||||
* reactos/subsys/csrss/api/conio.c
|
||||
*
|
||||
|
@ -1548,16 +1548,16 @@ CsrpProcessKey(MSG *msg, PCSRSS_CONSOLE Console)
|
|||
if (ConInRec->NotChar)
|
||||
LastVirtualKey = msg->wParam;
|
||||
|
||||
DbgPrint("csrss: %s %s %s %s %02x %02x '%c' %04x\n",
|
||||
Down ? "down" : "up ",
|
||||
(msg->message == WM_CHAR || msg->message == WM_SYSCHAR) ?
|
||||
"char" : "key ",
|
||||
ConInRec->Fake ? "fake" : "real",
|
||||
ConInRec->NotChar ? "notc" : "char",
|
||||
VirtualScanCode,
|
||||
VirtualKeyCode,
|
||||
(AsciiChar >= ' ') ? AsciiChar : '.',
|
||||
ShiftState);
|
||||
DPRINT("csrss: %s %s %s %s %02x %02x '%c' %04x\n",
|
||||
Down ? "down" : "up ",
|
||||
(msg->message == WM_CHAR || msg->message == WM_SYSCHAR) ?
|
||||
"char" : "key ",
|
||||
ConInRec->Fake ? "fake" : "real",
|
||||
ConInRec->NotChar ? "notc" : "char",
|
||||
VirtualScanCode,
|
||||
VirtualKeyCode,
|
||||
(AsciiChar >= ' ') ? AsciiChar : '.',
|
||||
ShiftState);
|
||||
|
||||
if (!ConInRec->Fake || !ConInRec->NotChar)
|
||||
CsrpProcessChar(Console, ConInRec);
|
||||
|
|
Loading…
Reference in a new issue