summaryrefslogtreecommitdiff
path: root/binaryninjacore.h
diff options
context:
space:
mode:
authorJosh Ferrell <josh@vector35.com>2025-02-13 17:07:25 -0500
committerJosh Ferrell <josh@vector35.com>2025-02-17 15:07:23 -0500
commitbef4772cfb414ff2e466f541d65c77a6b02b1eb5 (patch)
treec5f94f173f1da5e6e5a9adc6b654fe0154fd6e99 /binaryninjacore.h
parentbcdc0d9b89605936a1cb6cf3ffaaece60d3c5777 (diff)
Associate a RemoteProject to a Project when applicable
Diffstat (limited to 'binaryninjacore.h')
-rw-r--r--binaryninjacore.h4
1 files changed, 3 insertions, 1 deletions
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);