| 456 | } |
| 457 | |
| 458 | const wchar_t *OP_CALL OpGetCmdStr(op_handle handle, const wchar_t *cmd, int millseconds) { |
| 459 | return call_string(handle, [&](op::Op &op, std::wstring &ret) { op.GetCmdStr(safe_text(cmd), millseconds, ret); }); |
| 460 | } |
| 461 | |
| 462 | int OP_CALL OpSetClipboard(op_handle handle, const wchar_t *str) { |
| 463 | return call_ret(handle, [&](op::Op &op, long *ret) { op.SetClipboard(safe_text(str), ret); }); |
nothing calls this directly
no test coverage detected