summaryrefslogtreecommitdiff
path: root/function.cpp
diff options
context:
space:
mode:
authorGlenn Smith <glenn@vector35.com>2025-06-10 01:37:39 -0400
committerGlenn Smith <glenn@vector35.com>2025-06-11 17:37:30 -0400
commit4559573522332364873709280012593875935285 (patch)
tree145dcf6b2c070554ac1c377f94bcc4f860f8e900 /function.cpp
parent4677622997632557385187477331110706520731 (diff)
Expose Function::CheckForDebugReport
Diffstat (limited to 'function.cpp')
-rw-r--r--function.cpp6
1 files changed, 6 insertions, 0 deletions
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);