From 6dee35541be6669d2d783bea37e0f230b10ade23 Mon Sep 17 00:00:00 2001 From: Alexander Taylor Date: Wed, 24 Jul 2024 17:17:45 -0400 Subject: Remove deprecated API functions. --- binaryninjacore.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'binaryninjacore.h') 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); -- cgit v1.3.1