From 203717232e816d42973f05f1c9fbc950914d71dc Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Tue, 23 Jul 2019 22:40:39 -0400 Subject: Early HLIL testing --- function.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'function.cpp') diff --git a/function.cpp b/function.cpp index 0cffb6bc..304a59e2 100644 --- a/function.cpp +++ b/function.cpp @@ -545,6 +545,18 @@ Ref Function::GetMediumLevelILIfAvailable() const } +Ref Function::GetHighLevelIL() const +{ + return new HighLevelILFunction(BNGetFunctionHighLevelIL(m_object)); +} + + +Ref Function::GetHighLevelILIfAvailable() const +{ + return new HighLevelILFunction(BNGetFunctionHighLevelILIfAvailable(m_object)); +} + + Ref Function::GetType() const { return new Type(BNGetFunctionType(m_object)); -- cgit v1.3.1