summaryrefslogtreecommitdiff
path: root/binaryninjacore.h
diff options
context:
space:
mode:
authorRusty Wagner <rusty@vector35.com>2018-09-04 20:15:18 -0400
committerRusty Wagner <rusty@vector35.com>2018-09-04 20:15:18 -0400
commite51031010b107089dd7b5b69039ac42b856a0769 (patch)
tree02e4e9deb3453ce7c0372c00db3bdb98c83e6667 /binaryninjacore.h
parentd13dba15dab0484fa237bf741948582afb517253 (diff)
Add API to create graphs of IL functions
Diffstat (limited to 'binaryninjacore.h')
-rw-r--r--binaryninjacore.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h
index b15ceabd..0916112f 100644
--- a/binaryninjacore.h
+++ b/binaryninjacore.h
@@ -2663,6 +2663,10 @@ extern "C"
BINARYNINJACOREAPI BNFlowGraph* BNCreateFlowGraph();
BINARYNINJACOREAPI BNFlowGraph* BNCreateFunctionGraph(BNFunction* func, BNFunctionGraphType type,
BNDisassemblySettings* settings);
+ BINARYNINJACOREAPI BNFlowGraph* BNCreateLowLevelILFunctionGraph(BNLowLevelILFunction* func,
+ BNDisassemblySettings* settings);
+ BINARYNINJACOREAPI BNFlowGraph* BNCreateMediumLevelILFunctionGraph(BNMediumLevelILFunction* func,
+ BNDisassemblySettings* settings);
BINARYNINJACOREAPI BNFlowGraph* BNCreateCustomFlowGraph(BNCustomFlowGraph* callbacks);
BINARYNINJACOREAPI BNFlowGraph* BNNewFlowGraphReference(BNFlowGraph* graph);
BINARYNINJACOREAPI void BNFreeFlowGraph(BNFlowGraph* graph);