summaryrefslogtreecommitdiff
path: root/binaryninjacore.h
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2021-04-15 10:02:59 -0400
committerPeter LaFosse <peter@vector35.com>2021-04-26 11:42:38 -0400
commit864d00b8ec723c48ab148bf97ef4fbc93ef9942c (patch)
treedf5111b0f79ac68cdf10eed82b5ec7fd9a422fbf /binaryninjacore.h
parente80242c14066c8734ad00b4b015b3a54a4689463 (diff)
Add plugin status when dependencies are being installed
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 9dd5e40e..f47b2852 100644
--- a/binaryninjacore.h
+++ b/binaryninjacore.h
@@ -874,7 +874,8 @@ extern "C"
DisablePendingPluginStatus = 0x00000080,
PendingRestartPluginStatus = 0x00000200,
BeingUpdatedPluginStatus = 0x00000400,
- BeingDeletedPluginStatus = 0x00000800
+ BeingDeletedPluginStatus = 0x00000800,
+ DependenciesBeingInstalledStatus = 0x00001000
};
enum BNPluginType
@@ -4889,6 +4890,7 @@ __attribute__ ((format (printf, 1, 2)))
BINARYNINJACOREAPI bool BNPluginIsDisablePending(BNRepoPlugin* p);
BINARYNINJACOREAPI bool BNPluginIsDeletePending(BNRepoPlugin* p);
BINARYNINJACOREAPI bool BNPluginIsUpdateAvailable(BNRepoPlugin* p);
+ BINARYNINJACOREAPI bool BNPluginAreDependenciesBeingInstalled(BNRepoPlugin* p);
BINARYNINJACOREAPI char* BNPluginGetProjectData(BNRepoPlugin* p);
BINARYNINJACOREAPI uint64_t BNPluginGetLastUpdate(BNRepoPlugin* p);