summaryrefslogtreecommitdiff
path: root/binaryview.cpp
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2018-08-29 15:26:00 -0400
committerPeter LaFosse <peter@vector35.com>2018-08-31 14:21:07 -0400
commitf0ccb75e7d80a6c0ae8b01d794b929f03bc6ea6d (patch)
tree7569fe7689062b265329ad0f649705aa8caab922 /binaryview.cpp
parenta6b801afadada75afd2b1779edee8d203f3b3140 (diff)
parent426bb3d8b47b93658bf969c429a8b98adae13c30 (diff)
Merging with dev
Diffstat (limited to 'binaryview.cpp')
-rw-r--r--binaryview.cpp14
1 files changed, 13 insertions, 1 deletions
diff --git a/binaryview.cpp b/binaryview.cpp
index b4a66a95..a678d23b 100644
--- a/binaryview.cpp
+++ b/binaryview.cpp
@@ -2221,9 +2221,21 @@ void BinaryView::SetMaxFunctionSizeForAnalysis(uint64_t size)
}
+bool BinaryView::GetNewAutoFunctionAnalysisSuppressed()
+{
+ return BNGetNewAutoFunctionAnalysisSuppressed(m_object);
+}
+
+
+void BinaryView::SetNewAutoFunctionAnalysisSuppressed(bool suppress)
+{
+ BNSetNewAutoFunctionAnalysisSuppressed(m_object, suppress);
+}
+
+
Relocation::Relocation(BNRelocation* reloc)
{
- m_object = reloc;
+ m_object = reloc;
}