[!] fixed: previous revision

git-svn-id: https://pykd.svn.codeplex.com/svn@60263 9b283d60-5439-405e-af05-b73fd8c4d996
This commit is contained in:
SND\kernelnet_cp 2011-01-17 07:31:35 +00:00
parent b4898cff7e
commit 25e7428ac1
4 changed files with 2 additions and 8 deletions

View File

@ -154,7 +154,7 @@ BOOST_PYTHON_MODULE( pykd )
.def("end", &dbgModuleClass::getEnd )
.def("name", &dbgModuleClass::getName )
.def("contain", &dbgModuleClass::contain )
.def("__getattribute__", &dbgModuleClass::getOffset );
.def("__getattr__", &dbgModuleClass::getOffset );
boost::python::class_<dbgExtensionClass>(
"ext",
"windbg extension",

View File

@ -9,8 +9,6 @@ def loadSymbols():
global nt
nt = loadModule( "nt" )
nt.ObpRootDirectoryObject = getOffset( "nt", "ObpRootDirectoryObject" )
nt.ObpDirectoryObjectType = getOffset( "nt", "ObpDirectoryObjectType" )
def getObjectInDir( dirObj, objName ):

View File

@ -11,10 +11,6 @@ def checkInterrupt():
idtr = reg( "idtr" )
nt = loadModule( "nt" )
nt.KiInterruptDispatch = getOffset( "nt", "KiInterruptDispatch" )
nt.KiChainedDispatch = getOffset( "nt", "KiChainedDispatch" )
nt.KiInterruptTemplate = getOffset( "nt", "KiInterruptTemplate" )
hal = loadModule( "hal" )
ErrorCount = 0

View File

@ -5,7 +5,7 @@ import sys
def checkSSDT():
nt = loadModule( "nt" )
nt.KeServiceDescriptorTable = getOffset( "nt", "KeServiceDescriptorTable" )
if is64bitSystem():