From 0c3c4285a38d70bafb089b85e6764d0f4153ff9c Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Wed, 25 May 2016 19:29:10 -0400 Subject: Adding API to retrieve basic block annotations --- binaryninjaapi.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'binaryninjaapi.h') diff --git a/binaryninjaapi.h b/binaryninjaapi.h index c9c19953..50def47f 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -1275,6 +1275,8 @@ namespace BinaryNinja bool HasUndeterminedOutgoingEdges() const; void MarkRecentUse(); + + std::vector> GetAnnotations(); }; struct StackVariable @@ -1385,6 +1387,8 @@ namespace BinaryNinja std::vector GetIndirectBranches(); std::vector GetIndirectBranchesAt(Architecture* arch, uint64_t addr); + + std::vector> GetBlockAnnotations(Architecture* arch, uint64_t addr); }; struct FunctionGraphTextLine -- cgit v1.3.1