[~] misprint: dbgBreakpointClass -> dbgModuleClass

git-svn-id: https://pykd.svn.codeplex.com/svn@68039 9b283d60-5439-405e-af05-b73fd8c4d996
This commit is contained in:
SND\EreTIk_cp 2011-07-20 12:17:04 +00:00
parent 8e00dc3612
commit 76aa604568

View File

@ -113,13 +113,13 @@ BOOST_PYTHON_MODULE( pykd )
boost::python::def( "sizeof", &sizeofType, boost::python::def( "sizeof", &sizeofType,
"Return size of type" ); "Return size of type" );
boost::python::def( "loadModule", &loadModule, boost::python::def( "loadModule", &loadModule,
"Return instance of the dbgBreakpointClass" ); "Return instance of the dbgModuleClass" );
boost::python::def( "findSymbol", &findSymbolForAddress, boost::python::def( "findSymbol", &findSymbolForAddress,
"Return symbol for specified target address if it exists" ); "Return symbol for specified target address if it exists" );
boost::python::def( "getOffset", &findAddressForSymbol, boost::python::def( "getOffset", &findAddressForSymbol,
"Return target address for specified symbol" ); "Return target address for specified symbol" );
boost::python::def( "findModule", &findModule, boost::python::def( "findModule", &findModule,
"Return instance of the dbgBreakpointClass which posseses specified address" ); "Return instance of the dbgModuleClass which posseses specified address" );
boost::python::def( "addr64", &addr64, boost::python::def( "addr64", &addr64,
"Extend address to 64 bits formats ( for x86 )" ); "Extend address to 64 bits formats ( for x86 )" );
boost::python::def( "loadChars", loadChars, loadCharsOv( boost::python::args( "address", "number", "phyAddr" ), boost::python::def( "loadChars", loadChars, loadCharsOv( boost::python::args( "address", "number", "phyAddr" ),