summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--binaryninjaapi.h1
-rw-r--r--binaryninjacore.h1
-rw-r--r--pluginmanager.cpp6
-rw-r--r--python/pluginmanager.py10
4 files changed, 0 insertions, 18 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h
index 7ef66012..fb2d8347 100644
--- a/binaryninjaapi.h
+++ b/binaryninjaapi.h
@@ -15794,7 +15794,6 @@ namespace BinaryNinja {
std::string GetCommit() const;
std::string GetRepository() const;
std::string GetProjectData();
- std::string GetInstallInstructions(const std::string& platform) const;
uint64_t GetMinimumVersion() const;
uint64_t GetLastUpdate();
bool IsBeingDeleted() const;
diff --git a/binaryninjacore.h b/binaryninjacore.h
index e602fc74..229cb40c 100644
--- a/binaryninjacore.h
+++ b/binaryninjacore.h
@@ -6711,7 +6711,6 @@ extern "C"
BINARYNINJACOREAPI bool BNPluginInstallDependencies(BNRepoPlugin* p);
BINARYNINJACOREAPI bool BNPluginUninstall(BNRepoPlugin* p);
BINARYNINJACOREAPI bool BNPluginUpdate(BNRepoPlugin* p);
- BINARYNINJACOREAPI char* BNPluginGetInstallInstructions(BNRepoPlugin* p, const char* platform);
BINARYNINJACOREAPI char** BNPluginGetPlatforms(BNRepoPlugin* p, size_t* count);
BINARYNINJACOREAPI void BNFreePluginPlatforms(char** platforms, size_t count);
BINARYNINJACOREAPI const char* BNPluginGetRepository(BNRepoPlugin* p);
diff --git a/pluginmanager.cpp b/pluginmanager.cpp
index 3c80ac11..98671e2e 100644
--- a/pluginmanager.cpp
+++ b/pluginmanager.cpp
@@ -152,12 +152,6 @@ vector<string> RepoPlugin::GetInstallPlatforms() const
}
-std::string RepoPlugin::GetInstallInstructions(const std::string& platform) const
-{
- RETURN_STRING(BNPluginGetInstallInstructions(m_object, platform.c_str()));
-}
-
-
bool RepoPlugin::IsBeingDeleted() const
{
return BNPluginIsBeingDeleted(m_object);
diff --git a/python/pluginmanager.py b/python/pluginmanager.py
index 07b3e43e..d7474440 100644
--- a/python/pluginmanager.py
+++ b/python/pluginmanager.py
@@ -191,16 +191,6 @@ class RepoPlugin:
"""String version of the plugin"""
return core.BNPluginGetVersion(self.handle)
- def install_instructions(self, platform: str) -> Optional[str]:
- """
- Installation instructions for the given platform
-
- :param str platform: One of the valid platforms "Windows", "Linux", "Darwin"
- :return: String of the installation instructions for the provided platform
- :rtype: str
- """
- return core.BNPluginGetInstallInstructions(self.handle, platform)
-
@property
def install_platforms(self) -> List[str]:
"""List of platforms this plugin can execute on"""