summaryrefslogtreecommitdiff
path: root/binaryninjacore.h
diff options
context:
space:
mode:
authorBrian Potchik <brian@vector35.com>2024-11-01 14:00:48 -0400
committerBrian Potchik <brian@vector35.com>2024-11-01 14:00:48 -0400
commit5abcdcf6bd6f522ba93b382205a1e5af96d5f02f (patch)
treee871446d76b934efe30f49798a5d19ed05bea1ed /binaryninjacore.h
parent3665b63fe6e2c8c2edcf144507636d35965f5927 (diff)
Fix segment removal APIs.
Diffstat (limited to 'binaryninjacore.h')
-rw-r--r--binaryninjacore.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h
index bf8de702..7836f254 100644
--- a/binaryninjacore.h
+++ b/binaryninjacore.h
@@ -37,7 +37,7 @@
// Current ABI version for linking to the core. This is incremented any time
// there are changes to the API that affect linking, including new functions,
// new types, or modifications to existing functions or types.
-#define BN_CURRENT_CORE_ABI_VERSION 81
+#define BN_CURRENT_CORE_ABI_VERSION 82
// Minimum ABI version that is supported for loading of plugins. Plugins that
// are linked to an ABI version less than this will not be able to load and
@@ -4003,6 +4003,7 @@ extern "C"
BINARYNINJACOREAPI void BNUnregisterViewOfType(BNFileMetadata* file, const char* type, BNBinaryView* view);
// Memory Map
+ BINARYNINJACOREAPI char* BNGetBaseMemoryMapDescription(BNBinaryView* view);
BINARYNINJACOREAPI char* BNGetMemoryMapDescription(BNBinaryView* view);
BINARYNINJACOREAPI bool BNAddBinaryMemoryRegion(BNBinaryView* view, const char* name, uint64_t start, BNBinaryView* data, uint32_t flags);
BINARYNINJACOREAPI bool BNAddDataMemoryRegion(BNBinaryView* view, const char* name, uint64_t start, BNDataBuffer* data, uint32_t flags);