diff options
| author | Rusty Wagner <rusty@vector35.com> | 2015-03-10 03:21:04 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2015-03-10 03:21:04 -0400 |
| commit | 1c9293031e8b4554756350ccd33363cdd83bfc43 (patch) | |
| tree | 33906522917b26d7894784f75964fbe15392f092 /functiongraphblock.cpp | |
| parent | 55b999c719a33235c46166563df750b2a0fd30aa (diff) | |
Implement make function hotkey and disassembly navigation
Diffstat (limited to 'functiongraphblock.cpp')
| -rw-r--r-- | functiongraphblock.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/functiongraphblock.cpp b/functiongraphblock.cpp index 3914cc18..3653d749 100644 --- a/functiongraphblock.cpp +++ b/functiongraphblock.cpp @@ -15,6 +15,18 @@ FunctionGraphBlock::~FunctionGraphBlock() } +uint64_t FunctionGraphBlock::GetStart() const +{ + return BNGetFunctionGraphBlockStart(m_block); +} + + +uint64_t FunctionGraphBlock::GetEnd() const +{ + return BNGetFunctionGraphBlockEnd(m_block); +} + + int FunctionGraphBlock::GetX() const { return BNGetFunctionGraphBlockX(m_block); |
