I'm having trouble getting the WinDbg.for command.
I would like to dump an array of C ++ structures.
?? gpTranData->mpApplCodes[0] ?? gpTranData->mpApplCodes[0] works for a single entry, but I would like to skip n of them.
.for ($t0=0;$t0<(gpTranData->miApplCodeCount);$t0++){ ?? &gpTranData->mpApplCodes[$t0] }
sound logical to me but i get
Numeric expression missing from '>miApplCodeCount);$t0++){ ?? &gpTranData->m_pApplCodes[$t0] }'
Any ideas?
Scott
source share