From 023ec070cf1328879ff95e520a6b14ee092dde60 Mon Sep 17 00:00:00 2001 From: 0cyn Date: Mon, 3 Nov 2025 15:04:53 -0500 Subject: Revert "Refactor Plugin Load/Management to support upcoming changes" This reverts commit 72fcf44f3731ade3cf1310da55f633f1cb9069ce. --- binaryninjaapi.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'binaryninjaapi.cpp') 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(); -- cgit v1.3.1