From 8901295fceabdd598e6f63e81ba79d6c5e503f4a Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Wed, 22 Jul 2015 16:49:15 -0700 Subject: Add support for commenting in disassembly graph --- binaryninjaapi.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'binaryninjaapi.h') diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 0883d310..de65ee45 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -952,6 +952,10 @@ namespace BinaryNinja std::vector> GetBasicBlocks() const; void MarkRecentUse(); + std::string GetCommentForAddress(uint64_t addr) const; + std::vector GetCommentedAddresses() const; + void SetCommentForAddress(uint64_t addr, const std::string& comment); + Ref GetLowLevelIL() const; std::vector> GetLowLevelILBasicBlocks() const; -- cgit v1.3.1