summaryrefslogtreecommitdiff
path: root/binaryninjacore.h
diff options
context:
space:
mode:
authorRusty Wagner <rusty@vector35.com>2016-09-10 00:36:27 -0400
committerRusty Wagner <rusty@vector35.com>2016-09-10 00:36:27 -0400
commit6d3fe290eb20e31a33e929933c01d2ca3eb43da1 (patch)
tree5adc7c8dd595eff99cfcbeb7b689aae19bd46221 /binaryninjacore.h
parent6be6ee30e5973fa4d5f29cebdeafdf05c3f4251e (diff)
Add API for list of basic blocks starting at an address
Diffstat (limited to 'binaryninjacore.h')
-rw-r--r--binaryninjacore.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h
index f917c2fa..51bf3391 100644
--- a/binaryninjacore.h
+++ b/binaryninjacore.h
@@ -1420,6 +1420,7 @@ extern "C"
BINARYNINJACOREAPI void BNFreeBasicBlockList(BNBasicBlock** blocks, size_t count);
BINARYNINJACOREAPI BNBasicBlock* BNGetRecentBasicBlockForAddress(BNBinaryView* view, uint64_t addr);
BINARYNINJACOREAPI BNBasicBlock** BNGetBasicBlocksForAddress(BNBinaryView* view, uint64_t addr, size_t* count);
+ BINARYNINJACOREAPI BNBasicBlock** BNGetBasicBlocksStartingAtAddress(BNBinaryView* view, uint64_t addr, size_t* count);
BINARYNINJACOREAPI BNLowLevelILFunction* BNGetFunctionLowLevelIL(BNFunction* func);
BINARYNINJACOREAPI size_t BNGetLowLevelILForInstruction(BNFunction* func, BNArchitecture* arch, uint64_t addr);