| 942 | |
| 943 | |
| 944 | DEBUGGER_FFI_API char* BNDebuggerInvokeBackendCommand(BNDebuggerController* controller, const char* cmd) |
| 945 | { |
| 946 | std::string output = controller->object->InvokeBackendCommand(std::string(cmd)); |
| 947 | char* result = BNDebuggerAllocString(output.c_str()); |
| 948 | return result; |
| 949 | } |
| 950 | |
| 951 | |
| 952 | DEBUGGER_FFI_API char* BNDebuggerGetStopReasonString(BNDebugStopReason reason) |
no test coverage detected