diff options
| author | Rusty Wagner <rusty@vector35.com> | 2017-01-19 21:15:32 -0500 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2017-01-19 21:15:32 -0500 |
| commit | c6ed1dd374515d0e23a9d627a7dfb659c7981d16 (patch) | |
| tree | 0d5046cbf1ff9c5ced5920fab95e395102fb344f /binaryninjaapi.h | |
| parent | ded271158000d7fa509f513b425d95390a7f2058 (diff) | |
Add API to find virtual address from file offset
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index afbff4da..4e3f3d57 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -1050,6 +1050,7 @@ namespace BinaryNinja void RemoveUserSegment(uint64_t start, uint64_t length); std::vector<Segment> GetSegments(); bool GetSegmentAt(uint64_t addr, Segment& result); + bool GetAddressForDataOffset(uint64_t offset, uint64_t& addr); void AddAutoSection(const std::string& name, uint64_t start, uint64_t length, const std::string& type = "", uint64_t align = 1, uint64_t entrySize = 0, const std::string& linkedSection = "", |
