summaryrefslogtreecommitdiff
path: root/binaryninjacore.h
diff options
context:
space:
mode:
authorBrian Potchik <brian@vector35.com>2024-11-27 12:48:19 -0500
committerBrian Potchik <brian@vector35.com>2024-11-27 12:48:19 -0500
commit98ba687dfcc26bef50728cbcf04d6224513ac008 (patch)
tree876bf55be418e160fcc01b7aa1786807a122cc43 /binaryninjacore.h
parent34bd2341f9fb8d5e8bc57639cb0ec547c3b8596b (diff)
Add support for a logical memory map representation.
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 bb60b931..da068fbe 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 84
+#define BN_CURRENT_CORE_ABI_VERSION 85
// 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
@@ -4006,6 +4006,7 @@ extern "C"
// Memory Map
BINARYNINJACOREAPI char* BNGetBaseMemoryMapDescription(BNBinaryView* view);
BINARYNINJACOREAPI char* BNGetMemoryMapDescription(BNBinaryView* view);
+ BINARYNINJACOREAPI void BNSetLogicalMemoryMapEnabled(BNBinaryView* view, bool enabled);
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);
BINARYNINJACOREAPI bool BNAddRemoteMemoryRegion(BNBinaryView* view, const char* name, uint64_t start, BNFileAccessor* accessor, uint32_t flags);