summaryrefslogtreecommitdiff
path: root/binaryninjacore.h
diff options
context:
space:
mode:
authorAlexander Taylor <alex@vector35.com>2024-07-24 17:17:45 -0400
committerAlexander Taylor <alex@vector35.com>2024-07-24 17:17:45 -0400
commit6dee35541be6669d2d783bea37e0f230b10ade23 (patch)
tree6b99fb0012ff62b0f449d809b9405c8a097be57f /binaryninjacore.h
parentceeef1fe56d3f2aae280497810dc6860d1e483c5 (diff)
Remove deprecated API functions.
Diffstat (limited to 'binaryninjacore.h')
-rw-r--r--binaryninjacore.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h
index c7f54bed..ccc47c97 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 68
+#define BN_CURRENT_CORE_ABI_VERSION 69
// 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 67
+#define BN_MINIMUM_CORE_ABI_VERSION 69
#ifdef __GNUC__
#ifdef BINARYNINJACORE_LIBRARY
@@ -3430,8 +3430,6 @@ extern "C"
BINARYNINJACOREAPI BNLogger* BNLogCreateLogger(const char* loggerName, size_t sessionId);
BINARYNINJACOREAPI BNLogger* BNLogGetLogger(const char* loggerName, size_t sessionId);
BINARYNINJACOREAPI char** BNLogGetLoggerNames(size_t* count);
- // BNLogRegisterLoggerCallback is deprecated and no longer functions
- BINARYNINJACOREAPI void BNLogRegisterLoggerCallback(void (*cb)(const char* name, void* ctxt), void* ctxt);
BINARYNINJACOREAPI void BNRegisterLogListener(BNLogListener* listener);
BINARYNINJACOREAPI void BNUnregisterLogListener(BNLogListener* listener);