diff options
| author | Rusty Wagner <dontpanic@binaryninja.com> | 2015-03-23 22:52:58 -0400 |
|---|---|---|
| committer | Rusty Wagner <dontpanic@binaryninja.com> | 2015-03-23 22:52:58 -0400 |
| commit | d5dc1c2e3169760156ac54c976bbe1ea3d9a8441 (patch) | |
| tree | 5d2f430469a6a553cbcafd95c0548bee2f9681e0 /functiongraphblock.cpp | |
| parent | d056d837d0da994a99b1d8d7a1c2325e6108e059 (diff) | |
Add E hotkey to in-place edit instructions in graph view
Diffstat (limited to 'functiongraphblock.cpp')
| -rw-r--r-- | functiongraphblock.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/functiongraphblock.cpp b/functiongraphblock.cpp index 3653d749..d598c4a1 100644 --- a/functiongraphblock.cpp +++ b/functiongraphblock.cpp @@ -15,6 +15,12 @@ FunctionGraphBlock::~FunctionGraphBlock() } +Ref<Architecture> FunctionGraphBlock::GetArchitecture() const +{ + return new CoreArchitecture(BNGetFunctionGraphBlockArchitecture(m_block)); +} + + uint64_t FunctionGraphBlock::GetStart() const { return BNGetFunctionGraphBlockStart(m_block); |
