Commit 2dea1d0b authored by Guy L. Albertelli's avatar Guy L. Albertelli Committed by Alexandre Julliard

Display rectangle from WM_NCCALCSIZE on entry and exit.

parent d750780f
......@@ -1571,6 +1571,13 @@ void SPY_DumpStructure (UINT msg, BOOL enter, LPARAM structure)
ss->styleOld, ss->styleNew);
}
break;
case WM_NCCALCSIZE:
{
RECT *rc = (RECT *)structure;
TRACE("Rect (%d,%d)-(%d,%d)\n",
rc->left, rc->top, rc->right, rc->bottom);
}
break;
case WM_NOTIFY:
if (!enter) break;
{
......
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