mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-20 03:23:23 +08:00
37 lines
753 B
C++
37 lines
753 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include <boost/python.hpp>
|
|
#include <boost/python/object.hpp>
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
std::string
|
|
dbgCommand( const std::string &command );
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
class dbgExtensionClass {
|
|
|
|
public:
|
|
|
|
dbgExtensionClass() :
|
|
m_handle( NULL )
|
|
{}
|
|
|
|
dbgExtensionClass( const char* path );
|
|
|
|
~dbgExtensionClass();
|
|
|
|
std::string
|
|
call( const std::string &command, const std::string param );
|
|
|
|
private:
|
|
|
|
ULONG64 m_handle;
|
|
};
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|