From 4559573522332364873709280012593875935285 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Tue, 10 Jun 2025 01:37:39 -0400 Subject: Expose Function::CheckForDebugReport --- function.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'function.cpp') diff --git a/function.cpp b/function.cpp index 6d026359..593085d2 100644 --- a/function.cpp +++ b/function.cpp @@ -2778,6 +2778,12 @@ void Function::RequestDebugReport(const string& name) } +bool Function::CheckForDebugReport(const string& name) +{ + return BNFunctionCheckForDebugReport(m_object, name.c_str()); +} + + string Function::GetGotoLabelName(uint64_t labelId) { char* name = BNGetGotoLabelName(m_object, labelId); -- cgit v1.3.1