diff options
| author | Glenn Smith <glenn@vector35.com> | 2024-06-30 18:14:39 -0400 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2024-07-18 16:18:01 -0400 |
| commit | 3488068810307387117626066240761195266659 (patch) | |
| tree | 8307a7cd9b5ced9f249f8a349fa3dbb38aa2252c /binaryninjacore.h | |
| parent | 6a496b01b3e8a85c8231c949a306933e7ad58bfc (diff) | |
Add fuzzy completion to the python console
Co-Authored-By: Rusty Wagner <rusty@vector35.com>
Co-Authored-By: Kyle Miles <kyle@vector35.com>
Diffstat (limited to 'binaryninjacore.h')
| -rw-r--r-- | binaryninjacore.h | 3 |
1 files changed, 2 insertions, 1 deletions
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); |
