summaryrefslogtreecommitdiff
path: root/binaryninjaapi.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 /binaryninjaapi.h
parent6564ca9461ed83e2548dcde270fc3dc884486bd6 (diff)
Add get_data_refs_from API
Diffstat (limited to 'binaryninjaapi.h')
-rw-r--r--binaryninjaapi.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h
index 33b0c24a..6226d329 100644
--- a/binaryninjaapi.h
+++ b/binaryninjaapi.h
@@ -1367,6 +1367,8 @@ namespace BinaryNinja
std::vector<ReferenceSource> GetCodeReferences(uint64_t addr, uint64_t len);
std::vector<uint64_t> GetDataReferences(uint64_t addr);
std::vector<uint64_t> GetDataReferences(uint64_t addr, uint64_t len);
+ std::vector<uint64_t> GetDataReferencesFrom(uint64_t addr);
+ std::vector<uint64_t> GetDataReferencesFrom(uint64_t addr, uint64_t len);
Ref<Symbol> GetSymbolByAddress(uint64_t addr, const NameSpace& nameSpace=NameSpace());
Ref<Symbol> GetSymbolByRawName(const std::string& name, const NameSpace& nameSpace=NameSpace());