summaryrefslogtreecommitdiff
path: root/binaryninjaapi.h
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2017-08-26 22:23:12 -0400
committerPeter LaFosse <peter@vector35.com>2017-08-26 22:23:12 -0400
commitda388dd42cdee70facb084b3012214ca33014fa7 (patch)
treecad30eea655e91c03fc6f3ad94103707fd91c430 /binaryninjaapi.h
parent71a1a997e9be461a841a0f801bd19a23ad62f106 (diff)
Adding Function level comment APIs
Diffstat (limited to 'binaryninjaapi.h')
-rw-r--r--binaryninjaapi.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h
index 1b02e2f1..1cd65744 100644
--- a/binaryninjaapi.h
+++ b/binaryninjaapi.h
@@ -2153,8 +2153,10 @@ namespace BinaryNinja
Ref<BasicBlock> GetBasicBlockAtAddress(Architecture* arch, uint64_t addr) const;
void MarkRecentUse();
+ std::string GetComment() const;
std::string GetCommentForAddress(uint64_t addr) const;
std::vector<uint64_t> GetCommentedAddresses() const;
+ void SetComment(const std::string& comment);
void SetCommentForAddress(uint64_t addr, const std::string& comment);
Ref<LowLevelILFunction> GetLowLevelIL() const;