From 2beb9c10f8ff92e03a21de82df42f49b42c25a85 Mon Sep 17 00:00:00 2001 From: "Guy L. Albertelli" Date: Fri, 14 Jun 2002 23:26:55 +0000 Subject: [PATCH] - Dump out the TCITEM structure for appropriate messages. - Dump out the rectangle for the TCM_ADJUSTRECT message. --- windows/spy.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/windows/spy.c b/windows/spy.c index 04665782b8..b19403d607 100644 --- a/windows/spy.c +++ b/windows/spy.c @@ -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: { -- 2.32.0.93.g670b81a890