pykd/pykd/python/pysupport.h
SND\EreTIk_cp ca4d73e776 [0.2.x] + target system version
git-svn-id: https://pykd.svn.codeplex.com/svn@83540 9b283d60-5439-405e-af05-b73fd8c4d996
2017-11-08 17:42:50 +04:00

26 lines
612 B
C++

#pragma once
#include <boost/python/list.hpp>
#include "module.h"
#include "dbgengine.h"
///////////////////////////////////////////////////////////////////////////////
namespace pykd {
namespace pysupport {
python::list getProcessThreads();
python::tuple getBugCheckData();
python::tuple findSymbolAndDisp( ULONG64 offset );
python::tuple moduleFindSymbolAndDisp( pykd::Module &module, ULONG64 offset );
std::string printSystemVersion(SystemVersionPtr sysVer);
} } //pykd::support namespace end
///////////////////////////////////////////////////////////////////////////////