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

- Dump out the TCITEM structure for appropriate messages.

- Dump out the rectangle for the TCM_ADJUSTRECT message.
parent 6c7769e4
......@@ -2003,6 +2003,22 @@ void SPY_DumpStructure (SPY_INSTANCE *sp_e, BOOL enter)
}
break;
}
case TCM_INSERTITEMW:
case TCM_INSERTITEMA:
case TCM_SETITEMW:
case TCM_SETITEMA:
if (!enter) break;
/* fall through */
case TCM_GETITEMW:
case TCM_GETITEMA:
{
TCITEMA *item = (TCITEMA *) sp_e->lParam;
if (item) {
SPY_DumpMem ("TCITEM", (UINT*)item, sizeof(TCITEMA));
}
break;
}
case TCM_ADJUSTRECT:
case LVM_GETITEMRECT:
case LVM_GETSUBITEMRECT:
{
......
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