From ed4effd114fdda659319510a389ad9510135ea13 Mon Sep 17 00:00:00 2001 From: Xusheng Date: Tue, 21 May 2024 09:39:17 +0800 Subject: Make BinaryView::NotifyDataWritten/NotifyDataInserted/NotifyDataRemoved public so that it can be called from the debugger --- binaryninjaapi.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'binaryninjaapi.h') 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 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); -- cgit v1.3.1