I\'m having an annoying issue with Pykd.pyd
: I\'m using it in a script, launching several DbgCommand
functions, like:
DbgCommand(\"dt 0
try to change:
dt 0x000000eab87488f0 CMap m_nCount
to:
var = typedVar("CMap", 0x000000eab87488f0 )
print var
print var.m_nCount
print var.m_nCount * 2
You can get access to any filed of CMap class and work with its as they are natural python types
If you are going to get typedVar multiple times you can cache type information to avoid performance problems:
CMap = typeInfo("CMap")
var = typedVar( CMap, 0x000000eab87488f0 )