diff options
| author | Brian Potchik <brian@vector35.com> | 2019-08-31 15:05:33 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2019-08-31 15:05:33 -0400 |
| commit | 1ae0f8b0ad13e69835818d245745e8377ec86376 (patch) | |
| tree | 2d28d74088688bfcefc946bd2707e00e3d14390f | |
| parent | 01123090484a5c3a264ebb853ed57fac3b0efa83 (diff) | |
Improved selection offset handling in LinearView.
| -rw-r--r-- | ui/linearview.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/linearview.h b/ui/linearview.h index fe31de8a..7a7f9ad8 100644 --- a/ui/linearview.h +++ b/ui/linearview.h @@ -191,6 +191,7 @@ public: virtual bool canCompile() override { return true; } virtual BinaryViewRef getData() override { return m_data; } + void getCurrentOffsetByType(TypeRef resType, uint64_t baseAddr, uint64_t& begin, uint64_t& end, bool singleLine); virtual uint64_t getCurrentOffset() override; virtual void getSelectionOffsets(uint64_t& begin, uint64_t& end) override; virtual void getSelectionForInfo(uint64_t& begin, uint64_t& end) override; |
