diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2016-07-28 02:18:56 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2016-07-28 02:18:56 -0400 |
| commit | 7ef76305ac2e893a9c25776236c5e58c554aafb9 (patch) | |
| tree | 36eb9aa1f94f711cd7cd94058e8efe27b8275ce5 /binaryview.cpp | |
| parent | 6da5bfd8aedb3f02dd43d2648b6228256735bce2 (diff) | |
| parent | fdada2c752ab21cce2f6971e3270a4a3eb4faada (diff) | |
Merge branch 'dev' of github.com:Vector35/binaryninja-api into dev
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 de0870b6..d97051c7 100644 --- a/binaryview.cpp +++ b/binaryview.cpp @@ -791,6 +791,12 @@ void BinaryView::CreateUserFunction(Platform* platform, uint64_t start) } +void BinaryView::RemoveUserFunction(Function* func) +{ + BNRemoveUserFunction(m_object, func->GetObject()); +} + + void BinaryView::UpdateAnalysis() { BNUpdateAnalysis(m_object); |
