diff options
| author | Brian Potchik <brian@vector35.com> | 2024-03-14 12:43:05 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2024-03-14 12:43:05 -0400 |
| commit | 6e04c943e75ebdfbc6e940d0aa3d88a54b4c264b (patch) | |
| tree | b47ffcdaacba453fe39de077f914f4000f732a67 /binaryninjaapi.h | |
| parent | bf8b662124aeb1cf6e79045b3d4de3fd1cdd89a8 (diff) | |
Add support for advanced binary search.
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 741f399d..bf9bd9f6 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -6136,6 +6136,8 @@ namespace BinaryNinja { BNFunctionGraphType graph, const std::function<bool(size_t current, size_t total)>& progress, const std::function<bool(uint64_t addr, const LinearDisassemblyLine& line)>& matchCallback); + bool Search(const std::string& query, const std::function<bool(uint64_t offset, const DataBuffer& buffer)>& otherCallback); + void Reanalyze(); Ref<Workflow> GetWorkflow() const; @@ -16071,6 +16073,9 @@ namespace BinaryNinja { std::string string; BNFindFlag flags; bool findAll; + bool advancedSearch; + bool overlap; + int alignment; uint64_t findConstant; DataBuffer findBuffer; |
