mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
[WIN32K]
- Silence several debug prints that spam the debug log for no reason svn path=/trunk/; revision=66370
This commit is contained in:
parent
61021517a7
commit
0baafb6d87
5 changed files with 6 additions and 6 deletions
|
@ -354,9 +354,9 @@ IntEngGradientFillTriangle(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
DPRINT1("Triangle: (%i,%i) (%i,%i) (%i,%i)\n", v1->x, v1->y, v2->x, v2->y, v3->x, v3->y);
|
DPRINT("Triangle: (%i,%i) (%i,%i) (%i,%i)\n", v1->x, v1->y, v2->x, v2->y, v3->x, v3->y);
|
||||||
/* FIXME: commented out because of an endless loop - fix triangles first */
|
/* FIXME: commented out because of an endless loop - fix triangles first */
|
||||||
DPRINT1("FIXME: IntEngGradientFillTriangle is broken\n");
|
DPRINT("FIXME: IntEngGradientFillTriangle is broken\n");
|
||||||
|
|
||||||
if (!IntEngEnter(&EnterLeave, psoDest, &FillRect, FALSE, &Translate, &psoOutput))
|
if (!IntEngEnter(&EnterLeave, psoDest, &FillRect, FALSE, &Translate, &psoOutput))
|
||||||
{
|
{
|
||||||
|
|
|
@ -337,7 +337,7 @@ FindRemoveAsyncMsg(PWND Wnd, WPARAM wParam)
|
||||||
Message->Msg.hwnd == UserHMGetHandle(Wnd) &&
|
Message->Msg.hwnd == UserHMGetHandle(Wnd) &&
|
||||||
Message->Msg.wParam == wParam)
|
Message->Msg.wParam == wParam)
|
||||||
{
|
{
|
||||||
ERR("ASYNC SAW: Found one in the Sent Msg Queue! %p Activate/Deactivate %d\n", Message->Msg.hwnd, !!wParam);
|
WARN("ASYNC SAW: Found one in the Sent Msg Queue! %p Activate/Deactivate %d\n", Message->Msg.hwnd, !!wParam);
|
||||||
RemoveEntryList(&Message->ListEntry); // Purge the entry.
|
RemoveEntryList(&Message->ListEntry); // Purge the entry.
|
||||||
ClearMsgBitsMask(pti, Message->QS_Flags);
|
ClearMsgBitsMask(pti, Message->QS_Flags);
|
||||||
ExFreePoolWithTag(Message, TAG_USRMSG);
|
ExFreePoolWithTag(Message, TAG_USRMSG);
|
||||||
|
|
|
@ -254,7 +254,7 @@ IntDestroyMenuObject(PMENU Menu, BOOL bRecurse)
|
||||||
}
|
}
|
||||||
if (UserObjectInDestroy(Menu->head.h))
|
if (UserObjectInDestroy(Menu->head.h))
|
||||||
{
|
{
|
||||||
ERR("Menu already dead!\n");
|
WARN("Menu already dead!\n");
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
ret = UserDeleteObject(Menu->head.h, TYPE_MENU);
|
ret = UserDeleteObject(Menu->head.h, TYPE_MENU);
|
||||||
|
|
|
@ -1411,7 +1411,7 @@ NtUserBuildHwndList(
|
||||||
if (!(W32Thread = (PTHREADINFO)Thread->Tcb.Win32Thread))
|
if (!(W32Thread = (PTHREADINFO)Thread->Tcb.Win32Thread))
|
||||||
{
|
{
|
||||||
ObDereferenceObject(Thread);
|
ObDereferenceObject(Thread);
|
||||||
ERR("Thread is not initialized!\n");
|
TRACE("Tried to enumerate windows of a non gui thread\n");
|
||||||
return ERROR_INVALID_PARAMETER;
|
return ERROR_INVALID_PARAMETER;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -934,7 +934,7 @@ UserSetProcessWindowStation(HWINSTA hWindowStation)
|
||||||
ppi->prpwinsta = NewWinSta;
|
ppi->prpwinsta = NewWinSta;
|
||||||
ppi->hwinsta = hWindowStation;
|
ppi->hwinsta = hWindowStation;
|
||||||
ppi->amwinsta = hWindowStation != NULL ? ObjectHandleInfo.GrantedAccess : 0;
|
ppi->amwinsta = hWindowStation != NULL ? ObjectHandleInfo.GrantedAccess : 0;
|
||||||
ERR("WS : Granted Access %p\n",ppi->amwinsta);
|
TRACE("WS : Granted Access %p\n",ppi->amwinsta);
|
||||||
|
|
||||||
if (RtlAreAllAccessesGranted(ppi->amwinsta, WINSTA_READSCREEN))
|
if (RtlAreAllAccessesGranted(ppi->amwinsta, WINSTA_READSCREEN))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue