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 /binaryninjaapi.cpp | |
| parent | 84230e606e8de3f7c01aa9006c7f14caf25c5c49 (diff) | |
Deprecate BNInitCorePlugins/BNInitUserPlugins in favor of a common BNInitPlugins to allow platforms to load customized architecture plugins
Diffstat (limited to 'binaryninjaapi.cpp')
| -rw-r--r-- | binaryninjaapi.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/binaryninjaapi.cpp b/binaryninjaapi.cpp index 59c554b0..a789cdcd 100644 --- a/binaryninjaapi.cpp +++ b/binaryninjaapi.cpp @@ -42,6 +42,12 @@ bool BinaryNinja::IsPluginsEnabled() } +bool BinaryNinja::InitPlugins(bool allowUserPlugins) +{ + return BNInitPlugins(allowUserPlugins); +} + + void BinaryNinja::InitCorePlugins() { BNInitCorePlugins(); |
