diff options
| author | Rusty Wagner <rusty@vector35.com> | 2015-12-14 14:43:19 -0500 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2015-12-14 14:43:45 -0500 |
| commit | 73d4094f1d3f666c30f7533231261eb375cef6e8 (patch) | |
| tree | c66050223d09b2b3ecba4630b273da089f785642 /binaryninjaapi.h | |
| parent | 08a2e3fc0310ae7cc6d8374fef9301711cb26ae6 (diff) | |
Plugin command UI
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 59b4379f..c7bb0dd7 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -1473,7 +1473,7 @@ namespace BinaryNinja std::string GetName() const { return m_command.name; } std::string GetDescription() const { return m_command.description; } - bool IsValid(const PluginCommandContext& ctxt); - void Execute(const PluginCommandContext& ctxt); + bool IsValid(const PluginCommandContext& ctxt) const; + void Execute(const PluginCommandContext& ctxt) const; }; } |
