diff options
| author | kat <kat@vector35.com> | 2025-03-12 18:54:51 -0400 |
|---|---|---|
| committer | kat <kat@vector35.com> | 2025-03-19 15:04:23 -0400 |
| commit | d2371c2edabb7d70c2b31150bfa0e46d7acd1e5e (patch) | |
| tree | cd87b95725be78b859921cebb97faee6f0cb5d92 /binaryview.cpp | |
| parent | 7b1813b331f8872ec9bded4fd2df6059fae3d902 (diff) | |
Add API for BinaryView::FinalizeNewSegments
Diffstat (limited to 'binaryview.cpp')
| -rw-r--r-- | binaryview.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/binaryview.cpp b/binaryview.cpp index f37057e3..9f439f24 100644 --- a/binaryview.cpp +++ b/binaryview.cpp @@ -1791,6 +1791,11 @@ bool BinaryView::Save(const string& path) return BNSaveToFilename(m_object, path.c_str()); } +bool BinaryView::FinalizeNewSegments() +{ + return BNBinaryViewFinalizeNewSegments(m_object); +} + void BinaryView::DefineRelocation(Architecture* arch, BNRelocationInfo& info, uint64_t target, uint64_t reloc) { |
