Commit 8be3bf1c authored by Huw D M Davies's avatar Huw D M Davies Committed by Alexandre Julliard

Actually print return value of message.

parent 718b0e40
......@@ -1771,9 +1771,9 @@ static LRESULT MSG_SendMessage( HWND hwnd, UINT msg, WPARAM wParam,
}
if (flags & SMSG_WIN32)
SPY_ExitMessage( SPY_RESULT_OK, hwnd, msg, ret );
SPY_ExitMessage( SPY_RESULT_OK, hwnd, msg, *pRes );
else
SPY_ExitMessage( SPY_RESULT_OK16, hwnd, msg, ret );
SPY_ExitMessage( SPY_RESULT_OK16, hwnd, msg, *pRes );
END:
WIN_ReleaseWndPtr(wndPtr);
return ret;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment