mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-20 03:23:23 +08:00
26 lines
612 B
C++
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
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|