Author: tkreuzer
Date: Wed Dec 22 18:30:59 2010
New Revision: 50103
URL:
http://svn.reactos.org/svn/reactos?rev=50103&view=rev
Log:
[WIN32K]
Silence 3 DPRINTs
Modified:
trunk/reactos/subsystems/win32/win32k/ntuser/input.c
Modified: trunk/reactos/subsystems/win32/win32k/ntuser/input.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/nt…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/ntuser/input.c [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/ntuser/input.c [iso-8859-1] Wed Dec 22 18:30:59
2010
@@ -239,7 +239,7 @@
ptiMouse = PsGetCurrentThreadWin32Thread();
ptiMouse->TIF_flags |= TIF_SYSTEMTHREAD;
- DPRINT1("\nMouse Thread 0x%x \n", ptiMouse);
+ DPRINT("Mouse Thread 0x%x \n", ptiMouse);
KeSetPriorityThread(&PsGetCurrentThread()->Tcb,
LOW_REALTIME_PRIORITY + 3);
@@ -539,7 +539,7 @@
ptiKeyboard = PsGetCurrentThreadWin32Thread();
ptiKeyboard->TIF_flags |= TIF_SYSTEMTHREAD;
- DPRINT1("\nKeyboard Thread 0x%x \n", ptiKeyboard);
+ DPRINT("Keyboard Thread 0x%x \n", ptiKeyboard);
KeSetPriorityThread(&PsGetCurrentThread()->Tcb,
LOW_REALTIME_PRIORITY + 3);
@@ -902,7 +902,7 @@
ptiRawInput = PsGetCurrentThreadWin32Thread();
ptiRawInput->TIF_flags |= TIF_SYSTEMTHREAD;
- DPRINT1("\nRaw Input Thread 0x%x \n", ptiRawInput);
+ DPRINT("Raw Input Thread 0x%x \n", ptiRawInput);
KeSetPriorityThread(&PsGetCurrentThread()->Tcb,
LOW_REALTIME_PRIORITY + 3);
@@ -1342,7 +1342,7 @@
/* All messages have to contain the cursor point. */
Msg.pt = gpsi->ptCursor;
-
+
KbdHookData.vkCode = vk_hook;
KbdHookData.scanCode = ki->wScan;
KbdHookData.flags = flags >> 8;