diff options
| author | Brian Potchik <brian@vector35.com> | 2025-10-22 15:13:27 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2025-10-22 15:13:27 -0400 |
| commit | dd993ac110b3d098ac2388374b67e45eb4b9bf19 (patch) | |
| tree | baccf6b22c5e0aa9be95229795a80d9fe3c0370f /binaryninjaapi.h | |
| parent | 551738c693b52b8c383eab629fbc9d81d04d4c4b (diff) | |
Add interactive mode support to the container browser.
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 9e90eeb8..d7958113 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -9190,13 +9190,6 @@ namespace BinaryNinja { std::vector<Ref<TransformContext>> GetSelectedContexts() const; void SetSelectedContexts(const std::vector<Ref<TransformContext>>& contexts); - - // UI interaction support - bool RequiresUserInput() const; - bool HasMultipleFileChoices() const; - std::vector<std::string> GetAvailableFileChoices() const; - bool SelectFiles(const std::vector<std::string>& selectedFiles); - bool ProcessWithUserInput(); }; @@ -10071,7 +10064,7 @@ namespace BinaryNinja { { return !(*this == var); } - + bool operator<(const Variable& var) const { if (type != var.type) |
