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 /function.cpp | |
| parent | 55b999c719a33235c46166563df750b2a0fd30aa (diff) | |
Implement make function hotkey and disassembly navigation
Diffstat (limited to 'function.cpp')
| -rw-r--r-- | function.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/function.cpp b/function.cpp index a57c90f6..eb42c46c 100644 --- a/function.cpp +++ b/function.cpp @@ -41,6 +41,12 @@ vector<Ref<BasicBlock>> Function::GetBasicBlocks() const } +void Function::MarkRecentUse() +{ + BNMarkFunctionAsRecentlyUsed(m_func); +} + + Ref<FunctionGraph> Function::CreateFunctionGraph() { BNFunctionGraph* graph = BNCreateFunctionGraph(m_func); |
