mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-21 04:13:22 +08:00
[!] fixed: previous revision
git-svn-id: https://pykd.svn.codeplex.com/svn@60263 9b283d60-5439-405e-af05-b73fd8c4d996
This commit is contained in:
parent
b4898cff7e
commit
25e7428ac1
@ -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",
|
||||||
|
@ -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 ):
|
||||||
|
@ -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
|
||||||
|
@ -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():
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user