diff options
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); |
