summaryrefslogtreecommitdiff
path: root/binaryninjacore.h
diff options
context:
space:
mode:
authorBrian Potchik <brian@vector35.com>2024-08-04 16:14:26 -0400
committerBrian Potchik <brian@vector35.com>2024-08-04 16:14:26 -0400
commit14699743157a65be067253fa828219d29f4d058f (patch)
treeb3cb0bec23039233b6c9c85526b2e70ecab7c937 /binaryninjacore.h
parent9bdca74816b104d2b6694ce9d8cd231e197a2bbd (diff)
Add support for memory region flags propagation.
Diffstat (limited to 'binaryninjacore.h')
-rw-r--r--binaryninjacore.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h
index a17c9c24..45ef79f2 100644
--- a/binaryninjacore.h
+++ b/binaryninjacore.h
@@ -37,14 +37,14 @@
// 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 71
+#define BN_CURRENT_CORE_ABI_VERSION 72
// 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
// will require rebuilding. The minimum version is increased when there are
// incompatible changes that break binary compatibility, such as changes to
// existing types or functions.
-#define BN_MINIMUM_CORE_ABI_VERSION 71
+#define BN_MINIMUM_CORE_ABI_VERSION 72
#ifdef __GNUC__
#ifdef BINARYNINJACORE_LIBRARY
@@ -7014,10 +7014,6 @@ extern "C"
BINARYNINJACOREAPI uint64_t BNSegmentGetDataLength(BNSegment* segment);
BINARYNINJACOREAPI uint32_t BNSegmentGetFlags(BNSegment* segment);
BINARYNINJACOREAPI bool BNSegmentIsAutoDefined(BNSegment* segment);
- BINARYNINJACOREAPI void BNSegmentSetLength(BNSegment* segment, uint64_t length);
- BINARYNINJACOREAPI void BNSegmentSetDataOffset(BNSegment* segment, uint64_t dataOffset);
- BINARYNINJACOREAPI void BNSegmentSetDataLength(BNSegment* segment, uint64_t dataLength);
- BINARYNINJACOREAPI void BNSegmentSetFlags(BNSegment* segment, uint32_t flags);
// Section object methods
BINARYNINJACOREAPI BNSection* BNNewSectionReference(BNSection* section);