From 7714756208488751236371949777023618888407 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Tue, 10 Jun 2025 18:38:47 -0400 Subject: API to create immediate function graphs --- lowlevelil.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'lowlevelil.cpp') diff --git a/lowlevelil.cpp b/lowlevelil.cpp index 239abed0..33dea219 100644 --- a/lowlevelil.cpp +++ b/lowlevelil.cpp @@ -1038,3 +1038,10 @@ Ref LowLevelILFunction::CreateFunctionGraph(DisassemblySettings* sett BNFlowGraph* graph = BNCreateLowLevelILFunctionGraph(m_object, settings ? settings->GetObject() : nullptr); return new CoreFlowGraph(graph); } + + +Ref LowLevelILFunction::CreateFunctionGraphImmediate(DisassemblySettings* settings) +{ + BNFlowGraph* graph = BNCreateLowLevelILImmediateFunctionGraph(m_object, settings ? settings->GetObject() : nullptr); + return new CoreFlowGraph(graph); +} -- cgit v1.3.1