summaryrefslogtreecommitdiff
path: root/binaryninjaapi.h
diff options
context:
space:
mode:
authorXusheng <xusheng@vector35.com>2024-05-21 09:39:17 +0800
committerXusheng <xusheng@vector35.com>2024-06-19 13:47:18 +0800
commited4effd114fdda659319510a389ad9510135ea13 (patch)
treef51d569ac165685efe2f8ca1c41735382ccbc446 /binaryninjaapi.h
parentaff1ae1b17236936e731e423e660a18937567bd7 (diff)
Make BinaryView::NotifyDataWritten/NotifyDataInserted/NotifyDataRemoved public so that it can be called from the debugger
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 c0a94960..9eca62d4 100644
--- a/binaryninjaapi.h
+++ b/binaryninjaapi.h
@@ -4539,6 +4539,8 @@ namespace BinaryNinja {
virtual bool PerformSave(FileAccessor* file);
void PerformDefineRelocation(Architecture* arch, BNRelocationInfo& info, uint64_t target, uint64_t reloc);
void PerformDefineRelocation(Architecture* arch, BNRelocationInfo& info, Ref<Symbol> sym, uint64_t reloc);
+
+ public:
void NotifyDataWritten(uint64_t offset, size_t len);
void NotifyDataInserted(uint64_t offset, size_t len);
void NotifyDataRemoved(uint64_t offset, uint64_t len);