- Add a debug print to help, well..., debugging.

svn path=/trunk/; revision=64253
This commit is contained in:
Jérôme Gardou 2014-09-23 23:28:22 +00:00
parent 7e45898193
commit 359dfe2af9

View file

@ -296,6 +296,9 @@ co_IntCallWindowProc(WNDPROC Proc,
ULONG ArgumentLength;
LRESULT Result;
TRACE("co_IntCallWindowProc(Proc %p, IsAnsiProc: %s, Wnd %p, Message %u, wParam %Iu, lParam %Id, lParamBufferSize %d)\n",
Proc, IsAnsiProc ? "TRUE" : "FALSE", Wnd, Message, wParam, lParam, lParamBufferSize);
/* Do not allow the desktop thread to do callback to user mode */
ASSERT(PsGetCurrentThreadWin32Thread() != gptiDesktopThread);