| 421 | } |
| 422 | |
| 423 | STDMETHODIMP OpAutomation::GetCmdStr(BSTR cmd, LONG millseconds, BSTR *retstr) { |
| 424 | wstring s; |
| 425 | obj.GetCmdStr(cmd, millseconds, s); |
| 426 | |
| 427 | CComBSTR newstr; |
| 428 | |
| 429 | auto hr = newstr.Append(s.data()); |
| 430 | hr = newstr.CopyTo(retstr); |
| 431 | return hr; |
| 432 | } |
| 433 | |
| 434 | STDMETHODIMP OpAutomation::SetClipboard(BSTR str, LONG *ret) { |
| 435 | obj.SetClipboard(str, ret); |
no test coverage detected