diff options
Diffstat (limited to 'binaryview.cpp')
| -rw-r--r-- | binaryview.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/binaryview.cpp b/binaryview.cpp index e0948a1c..547d1fc7 100644 --- a/binaryview.cpp +++ b/binaryview.cpp @@ -1482,6 +1482,18 @@ vector<uint64_t> BinaryView::GetDataReferencesFrom(uint64_t addr, uint64_t len) } +void BinaryView::AddUserDataReference(uint64_t fromAddr, uint64_t toAddr) +{ + BNAddUserDataReference(m_object, fromAddr, toAddr); +} + + +void BinaryView::RemoveUserDataReference(uint64_t fromAddr, uint64_t toAddr) +{ + BNRemoveUserDataReference(m_object, fromAddr, toAddr); +} + + Ref<Symbol> BinaryView::GetSymbolByAddress(uint64_t addr, const NameSpace& nameSpace) { BNNameSpace ns = nameSpace.GetAPIObject(); |
