diff options
| author | Rusty Wagner <rusty@vector35.com> | 2019-04-26 16:38:14 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2019-04-26 16:38:14 -0400 |
| commit | 453eb5bdc70513464c7137f910cba815289c97a0 (patch) | |
| tree | 2bdf1ebdaf00748fcf631d58486afe97d6da3197 /binaryninjacore.h | |
| parent | 0911788d1183d061eabe1d9084d4eb866c032938 (diff) | |
Don't let a node that hasn't been added to the graph be added as an edge target
Diffstat (limited to 'binaryninjacore.h')
| -rw-r--r-- | binaryninjacore.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h index 8e355ab1..89b61202 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -2948,6 +2948,8 @@ extern "C" BINARYNINJACOREAPI void BNSetFlowGraphOption(BNFlowGraph* graph, BNFlowGraphOption option, bool value); BINARYNINJACOREAPI bool BNIsFlowGraphOptionSet(BNFlowGraph* graph, BNFlowGraphOption option); + BINARYNINJACOREAPI bool BNIsNodeValidForFlowGraph(BNFlowGraph* graph, BNFlowGraphNode* node); + // Symbols BINARYNINJACOREAPI BNSymbol* BNCreateSymbol(BNSymbolType type, const char* shortName, const char* fullName, const char* rawName, uint64_t addr, BNSymbolBinding binding, const BNNameSpace* nameSpace, uint64_t ordinal); |
