diff options
| author | Glenn Smith <glenn@vector35.com> | 2025-06-10 01:37:39 -0400 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2025-06-11 17:37:30 -0400 |
| commit | 4559573522332364873709280012593875935285 (patch) | |
| tree | 145dcf6b2c070554ac1c377f94bcc4f860f8e900 /function.cpp | |
| parent | 4677622997632557385187477331110706520731 (diff) | |
Expose Function::CheckForDebugReport
Diffstat (limited to 'function.cpp')
| -rw-r--r-- | function.cpp | 6 |
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); |
