diff options
| author | Rusty Wagner <rusty@vector35.com> | 2020-10-15 17:24:51 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2020-10-15 19:46:31 -0400 |
| commit | 13fdbe08bd92171c6d79b45cf331a3d82c25c10c (patch) | |
| tree | e1ada73e15e980f0254695d615479c380d289a18 /binaryninjacore.h | |
| parent | 84230e606e8de3f7c01aa9006c7f14caf25c5c49 (diff) | |
Deprecate BNInitCorePlugins/BNInitUserPlugins in favor of a common BNInitPlugins to allow platforms to load customized architecture plugins
Diffstat (limited to 'binaryninjacore.h')
| -rw-r--r-- | binaryninjacore.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h index dfd78fad..189a3ea2 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -2448,10 +2448,11 @@ extern "C" BINARYNINJACOREAPI char* BNGetUniqueIdentifierString(void); // Plugin initialization - BINARYNINJACOREAPI bool BNInitCorePlugins(void); + BINARYNINJACOREAPI bool BNInitPlugins(bool allowUserPlugins); + BINARYNINJACOREAPI bool BNInitCorePlugins(void); // Deprecated, use BNInitPlugins BINARYNINJACOREAPI void BNDisablePlugins(void); BINARYNINJACOREAPI bool BNIsPluginsEnabled(void); - BINARYNINJACOREAPI void BNInitUserPlugins(void); + BINARYNINJACOREAPI void BNInitUserPlugins(void); // Deprecated, use BNInitPlugins BINARYNINJACOREAPI void BNInitRepoPlugins(void); BINARYNINJACOREAPI char* BNGetInstallDirectory(void); |
