mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-05-07 17:43:24 +08:00

[0.2.x] added : disasm::jump method ( Change the current instruction ) [0.2.x] added : disasm::jumprel method ( Change the current instruction ) git-svn-id: https://pykd.svn.codeplex.com/svn@82501 9b283d60-5439-405e-af05-b73fd8c4d996
9 lines
318 B
C++
9 lines
318 B
C++
#pragma once
|
|
|
|
namespace pykd {
|
|
|
|
void disasmAssemblay( ULONG64 offset, const std::string &instruction, ULONG64 &nextOffset );
|
|
void disasmDisassembly( ULONG64 offset, std::string &instruction, ULONG64 &nextOffset, ULONG64 &ea );
|
|
ULONG64 getNearInstruction( ULONG64 offset, LONG delta );
|
|
|
|
} // end pykd namespace
|