mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-29 11:53:23 +08:00

[0.1.x] added : setImplicitThread routine [0.1.x] added : setProcessorMode routine [0.1.x] added : typedVarArray method of the module class git-svn-id: https://pykd.svn.codeplex.com/svn@72698 9b283d60-5439-405e-af05-b73fd8c4d996
28 lines
568 B
C++
28 lines
568 B
C++
#pragma once
|
|
|
|
namespace pykd {
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
ULONG64 getCurrentProcess();
|
|
|
|
ULONG64 getImplicitThread();
|
|
|
|
python::list getCurrentStack();
|
|
|
|
std::string getProcessorMode();
|
|
|
|
std::string getProcessorType();
|
|
|
|
python::list getThreadList();
|
|
|
|
void setCurrentProcess( ULONG64 processAddr );
|
|
|
|
void setImplicitThread( ULONG64 threadAddr );
|
|
|
|
void setProcessorMode( const std::wstring &mode );
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
}
|