[WIN32K]
authorJérôme Gardou <jerome.gardou@reactos.org>
Tue, 23 Sep 2014 23:28:22 +0000 (23:28 +0000)
committerJérôme Gardou <jerome.gardou@reactos.org>
Tue, 23 Sep 2014 23:28:22 +0000 (23:28 +0000)
 - Add a debug print to help, well..., debugging.

svn path=/trunk/; revision=64253

reactos/win32ss/user/ntuser/callback.c

index 6bd8060..a9d6939 100644 (file)
@@ -296,6 +296,9 @@ co_IntCallWindowProc(WNDPROC Proc,
    ULONG ArgumentLength;
    LRESULT Result;
 
    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);
 
    /* Do not allow the desktop thread to do callback to user mode */
    ASSERT(PsGetCurrentThreadWin32Thread() != gptiDesktopThread);