From 161786fc483515615399ba990254fba8d7d42876 Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Wed, 28 Nov 2018 12:01:57 -0500 Subject: Fix warning, expose PluginType api --- binaryninjaapi.h | 1 + 1 file changed, 1 insertion(+) (limited to 'binaryninjaapi.h') diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 80fbfe75..2fde0526 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -3739,6 +3739,7 @@ namespace BinaryNinja std::string GetName() const { return m_command.name; } std::string GetDescription() const { return m_command.description; } + BNPluginCommandType GetType() const { return m_command.type; } bool IsValid(const PluginCommandContext& ctxt) const; void Execute(const PluginCommandContext& ctxt) const; -- cgit v1.3.1