diff options
| author | Glenn Smith <glenn@vector35.com> | 2025-06-30 13:46:52 -0400 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2025-07-01 23:23:25 -0400 |
| commit | 7871953325024282191116771022201477045749 (patch) | |
| tree | 2e55b48cd8c2152ebeae85d1f617c9287628c762 /workflow.cpp | |
| parent | 3369388279087234793382558126227582393316 (diff) | |
Python: Collect and pass mappings when copying MLIL functions
Diffstat (limited to 'workflow.cpp')
| -rw-r--r-- | workflow.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/workflow.cpp b/workflow.cpp index 13c69136..83e7b142 100644 --- a/workflow.cpp +++ b/workflow.cpp @@ -100,7 +100,8 @@ void AnalysisContext::SetLowLevelILFunction(Ref<LowLevelILFunction> lowLevelIL) void AnalysisContext::SetMediumLevelILFunction(Ref<MediumLevelILFunction> mediumLevelIL) { - BNSetMediumLevelILFunction(m_object, mediumLevelIL->m_object); + // TODO: Mappings FFI + BNSetMediumLevelILFunction(m_object, mediumLevelIL->m_object, nullptr, 0, nullptr, 0); } |
