From bef4772cfb414ff2e466f541d65c77a6b02b1eb5 Mon Sep 17 00:00:00 2001 From: Josh Ferrell Date: Thu, 13 Feb 2025 17:07:25 -0500 Subject: Associate a RemoteProject to a Project when applicable --- binaryninjacore.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'binaryninjacore.h') diff --git a/binaryninjacore.h b/binaryninjacore.h index 8e1e6141..aeefea09 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 94 +#define BN_CURRENT_CORE_ABI_VERSION 95 // 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 @@ -3891,6 +3891,8 @@ extern "C" BINARYNINJACOREAPI void BNProjectBeginBulkOperation(BNProject* project); BINARYNINJACOREAPI void BNProjectEndBulkOperation(BNProject* project); + BINARYNINJACOREAPI BNRemoteProject* BNProjectGetRemoteProject(BNProject* project); + // ProjectFile object BINARYNINJACOREAPI BNProjectFile* BNNewProjectFileReference(BNProjectFile* file); BINARYNINJACOREAPI void BNFreeProjectFile(BNProjectFile* file); -- cgit v1.3.1