diff options
| author | Peter LaFosse <peter@vector35.com> | 2018-10-23 22:29:15 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2018-10-24 21:31:48 -0400 |
| commit | 3cc05db3e42d402cb03fe3fb8ca582e3ded882f7 (patch) | |
| tree | 816b76258e18809da59f60a847ab6067a5ad5c67 /binaryninjaapi.h | |
| parent | ec7d4ac5ecfb59ce98ac64f2ed889b73655df746 (diff) | |
Add new APIs for querying data references
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 958697c7..1fdb74d2 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -1357,6 +1357,8 @@ namespace BinaryNinja std::vector<ReferenceSource> GetCodeReferences(uint64_t addr); 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); Ref<Symbol> GetSymbolByAddress(uint64_t addr, const NameSpace& nameSpace=NameSpace()); Ref<Symbol> GetSymbolByRawName(const std::string& name, const NameSpace& nameSpace=NameSpace()); |
