| 540 | |
| 541 | |
| 542 | std::string DebuggerController::GetCommandLineArguments() |
| 543 | { |
| 544 | char* args = BNDebuggerGetCommandLineArguments(m_object); |
| 545 | if (!args) |
| 546 | return ""; |
| 547 | |
| 548 | std::string result = args; |
| 549 | BNDebuggerFreeString(args); |
| 550 | return result; |
| 551 | } |
| 552 | |
| 553 | |
| 554 | void DebuggerController::SetInputFile(const std::string& path) |
no test coverage detected