summaryrefslogtreecommitdiff
path: root/binaryninjacore.h
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2019-03-03 22:29:03 -0500
committerPeter LaFosse <peter@vector35.com>2019-03-06 23:37:47 -0500
commitff682853049753d233ecebbcca0d4bf9a6f1eff0 (patch)
tree584742cfae8b7f89729f614d7f3c81129f6b83f4 /binaryninjacore.h
parent6564ca9461ed83e2548dcde270fc3dc884486bd6 (diff)
Add get_data_refs_from API
Diffstat (limited to 'binaryninjacore.h')
-rw-r--r--binaryninjacore.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h
index 4e0c0af5..7c8ea970 100644
--- a/binaryninjacore.h
+++ b/binaryninjacore.h
@@ -2656,6 +2656,8 @@ extern "C"
BINARYNINJACOREAPI void BNFreeCodeReferences(BNReferenceSource* refs, size_t count);
BINARYNINJACOREAPI uint64_t* BNGetDataReferences(BNBinaryView* view, uint64_t addr, size_t* count);
BINARYNINJACOREAPI uint64_t* BNGetDataReferencesInRange(BNBinaryView* view, uint64_t addr, uint64_t len, size_t* count);
+ BINARYNINJACOREAPI uint64_t* BNGetDataReferencesFrom(BNBinaryView* view, uint64_t addr, size_t* count);
+ BINARYNINJACOREAPI uint64_t* BNGetDataReferencesFromInRange(BNBinaryView* view, uint64_t addr, uint64_t len, size_t* count);
BINARYNINJACOREAPI void BNFreeDataReferences(uint64_t* refs);
BINARYNINJACOREAPI void BNRegisterGlobalFunctionRecognizer(BNFunctionRecognizer* rec);