mirror of
https://github.com/reactos/wine.git
synced 2025-02-02 10:12:01 +00:00
Display rectangle from WM_NCCALCSIZE on entry and exit.
This commit is contained in:
parent
d750780f8c
commit
2dea1d0b1e
@ -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;
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user