diff options
| author | Brian Potchik <brian@vector35.com> | 2025-06-25 15:12:23 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2025-06-25 15:12:23 -0400 |
| commit | ecf2b3dd3e14d8ed0a3485104eaaa34a372228ba (patch) | |
| tree | 25138e2b24efd3584b42128e38192f01e6fa24b5 /binaryninjaapi.h | |
| parent | cdb6e62b649ea49b16350e57569df891ef7dfa34 (diff) | |
Initial support for guided disassembly.
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 8ca9ad33..41a93d08 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -11435,6 +11435,12 @@ namespace BinaryNinja { void SetUserIndirectBranches( Architecture* sourceArch, uint64_t source, const std::vector<ArchAndAddr>& branches); + // Guided Disassembly Support + void SetGuidedSourceBlocks(const std::vector<ArchAndAddr>& addresses); + void AddGuidedSourceBlocks(const std::vector<ArchAndAddr>& addresses); + void RemoveGuidedSourceBlocks(const std::vector<ArchAndAddr>& addresses); + std::vector<ArchAndAddr> GetGuidedSourceBlocks(); + std::vector<IndirectBranchInfo> GetIndirectBranches(); std::vector<IndirectBranchInfo> GetIndirectBranchesAt(Architecture* arch, uint64_t addr); |
