From 3488068810307387117626066240761195266659 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Sun, 30 Jun 2024 18:14:39 -0400 Subject: Add fuzzy completion to the python console Co-Authored-By: Rusty Wagner Co-Authored-By: Kyle Miles --- binaryninjacore.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'binaryninjacore.h') diff --git a/binaryninjacore.h b/binaryninjacore.h index 081f0d4b..6c83924a 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 65 +#define BN_CURRENT_CORE_ABI_VERSION 66 // 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 @@ -6586,6 +6586,7 @@ extern "C" BINARYNINJACOREAPI char* BNScriptingInstanceCompleteInput( BNScriptingInstance* instance, const char* text, uint64_t state); BINARYNINJACOREAPI void BNStopScriptingInstance(BNScriptingInstance* instance); + BINARYNINJACOREAPI size_t BNFuzzyMatchSingle(const char* target, const char* query); // Main thread actions BINARYNINJACOREAPI void BNRegisterMainThread(BNMainThreadCallbacks* callbacks); -- cgit v1.3.1