diff options
| author | Glenn Smith <glenn@vector35.com> | 2025-06-10 18:38:47 -0400 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2025-06-11 17:37:30 -0400 |
| commit | 7714756208488751236371949777023618888407 (patch) | |
| tree | 3e8dcfcabb9736cc03ad7ad2d521e71b7b5fe25b /binaryninjacore.h | |
| parent | 4559573522332364873709280012593875935285 (diff) | |
API to create immediate function graphs
Diffstat (limited to 'binaryninjacore.h')
| -rw-r--r-- | binaryninjacore.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h index 99e10969..ae906bb9 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -5654,6 +5654,14 @@ extern "C" BNMediumLevelILFunction* func, BNDisassemblySettings* settings); BINARYNINJACOREAPI BNFlowGraph* BNCreateHighLevelILFunctionGraph( BNHighLevelILFunction* func, BNDisassemblySettings* settings); + BINARYNINJACOREAPI BNFlowGraph* BNCreateImmediateFunctionGraph( + BNFunction* func, BNFunctionViewType type, BNDisassemblySettings* settings); + BINARYNINJACOREAPI BNFlowGraph* BNCreateLowLevelILImmediateFunctionGraph( + BNLowLevelILFunction* func, BNDisassemblySettings* settings); + BINARYNINJACOREAPI BNFlowGraph* BNCreateMediumLevelILImmediateFunctionGraph( + BNMediumLevelILFunction* func, BNDisassemblySettings* settings); + BINARYNINJACOREAPI BNFlowGraph* BNCreateHighLevelILImmediateFunctionGraph( + BNHighLevelILFunction* func, BNDisassemblySettings* settings); BINARYNINJACOREAPI BNFlowGraph* BNCreateCustomFlowGraph(BNCustomFlowGraph* callbacks); BINARYNINJACOREAPI BNFlowGraph* BNNewFlowGraphReference(BNFlowGraph* graph); BINARYNINJACOREAPI void BNFreeFlowGraph(BNFlowGraph* graph); |
