diff options
| author | Rusty Wagner <rusty@vector35.com> | 2015-12-30 19:17:22 -0500 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2015-12-30 19:17:22 -0500 |
| commit | a318eaa789a1556ef02438ed9101804870c3f5d1 (patch) | |
| tree | c5cef60fa6ee5e4a2a8a723ebf6cda9dda2540de /binaryview.cpp | |
| parent | 88c7de7a9d390d2e99d14d1ce6837729a69e900d (diff) | |
Allow opening a new tab or window to the same file, updates take effect in both
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 721adcba..9cf61bdc 100644 --- a/binaryview.cpp +++ b/binaryview.cpp @@ -719,6 +719,12 @@ vector<Ref<Function>> BinaryView::GetAnalysisFunctionList() } +bool BinaryView::HasFunctions() const +{ + return BNHasFunctions(m_view); +} + + Ref<Function> BinaryView::GetAnalysisFunction(Architecture* arch, uint64_t addr) { BNFunction* func = BNGetAnalysisFunction(m_view, arch->GetArchitectureObject(), addr); |
