Display rectangle from WM_NCCALCSIZE on entry and exit.

This commit is contained in:
Guy L. Albertelli 2001-07-20 17:57:51 +00:00 committed by Alexandre Julliard
parent d750780f8c
commit 2dea1d0b1e

View File

@ -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;
{