[!] 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("end", &dbgModuleClass::getEnd )
.def("name", &dbgModuleClass::getName ) .def("name", &dbgModuleClass::getName )
.def("contain", &dbgModuleClass::contain ) .def("contain", &dbgModuleClass::contain )
.def("__getattribute__", &dbgModuleClass::getOffset ); .def("__getattr__", &dbgModuleClass::getOffset );
boost::python::class_<dbgExtensionClass>( boost::python::class_<dbgExtensionClass>(
"ext", "ext",
"windbg extension", "windbg extension",

View File

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

View File

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

View File

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