diff options
| author | 0cyn <kat@vector35.com> | 2025-11-03 15:04:53 -0500 |
|---|---|---|
| committer | 0cyn <kat@vector35.com> | 2025-11-03 15:04:53 -0500 |
| commit | 023ec070cf1328879ff95e520a6b14ee092dde60 (patch) | |
| tree | 0c59006a0fd19fbe24ead3c51ed402dd7114d807 /binaryninjaapi.cpp | |
| parent | 0c55bf12f6148a8f3c4b1af66c950d73e371b351 (diff) | |
Revert "Refactor Plugin Load/Management to support upcoming changes"
This reverts commit 72fcf44f3731ade3cf1310da55f633f1cb9069ce.
Diffstat (limited to 'binaryninjaapi.cpp')
| -rw-r--r-- | binaryninjaapi.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/binaryninjaapi.cpp b/binaryninjaapi.cpp index 1ac13b21..c35e28c8 100644 --- a/binaryninjaapi.cpp +++ b/binaryninjaapi.cpp @@ -49,6 +49,24 @@ bool BinaryNinja::InitPlugins(bool allowUserPlugins) } +void BinaryNinja::InitCorePlugins() +{ + BNInitCorePlugins(); +} + + +void BinaryNinja::InitUserPlugins() +{ + BNInitUserPlugins(); +} + + +void BinaryNinja::InitRepoPlugins() +{ + BNInitRepoPlugins(); +} + + string BinaryNinja::GetBundledPluginDirectory() { char* path = BNGetBundledPluginDirectory(); |
