- Dump out the TCITEM structure for appropriate messages.

- Dump out the rectangle for the TCM_ADJUSTRECT message.
oldstable
Guy L. Albertelli 2002-06-14 23:26:55 +00:00 committed by Alexandre Julliard
parent 6c7769e488
commit 2beb9c10f8
1 changed files with 16 additions and 0 deletions

View File

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