From 1c9293031e8b4554756350ccd33363cdd83bfc43 Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Tue, 10 Mar 2015 03:21:04 -0400 Subject: Implement make function hotkey and disassembly navigation --- function.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'function.cpp') diff --git a/function.cpp b/function.cpp index a57c90f6..eb42c46c 100644 --- a/function.cpp +++ b/function.cpp @@ -41,6 +41,12 @@ vector> Function::GetBasicBlocks() const } +void Function::MarkRecentUse() +{ + BNMarkFunctionAsRecentlyUsed(m_func); +} + + Ref Function::CreateFunctionGraph() { BNFunctionGraph* graph = BNCreateFunctionGraph(m_func); -- cgit v1.3.1