diff options
| author | Rusty Wagner <rusty@vector35.com> | 2015-07-29 16:22:46 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2015-07-29 16:22:46 -0400 |
| commit | a1000948164a38f12a3348490ac13446ace196b7 (patch) | |
| tree | 296135e3401ba4bd96fdfd2f340ddb0c569ae3c0 /binaryview.cpp | |
| parent | 3fc101f475a763a09d779f119dcbec3185a472a0 (diff) | |
Show hex editor when hovering over an address that isn't a function
Diffstat (limited to 'binaryview.cpp')
| -rw-r--r-- | binaryview.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/binaryview.cpp b/binaryview.cpp index 61d740a4..0e24f65e 100644 --- a/binaryview.cpp +++ b/binaryview.cpp @@ -479,6 +479,12 @@ BNModificationStatus BinaryView::GetModification(uint64_t offset) } +bool BinaryView::IsValidOffset(uint64_t offset) const +{ + return BNIsValidOffset(m_view, offset); +} + + uint64_t BinaryView::GetStart() const { return BNGetStartOffset(m_view); |
