diff options
| author | Peter LaFosse <peter@vector35.com> | 2017-08-26 22:23:12 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2017-08-26 22:23:12 -0400 |
| commit | da388dd42cdee70facb084b3012214ca33014fa7 (patch) | |
| tree | cad30eea655e91c03fc6f3ad94103707fd91c430 /binaryninjaapi.h | |
| parent | 71a1a997e9be461a841a0f801bd19a23ad62f106 (diff) | |
Adding Function level comment APIs
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 2 |
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; |
