| 176 | } |
| 177 | |
| 178 | STDMETHODIMP OpAutomation::EnumProcess(BSTR name, BSTR *retstring) { |
| 179 | wstring s; |
| 180 | obj.EnumProcess(name, s); |
| 181 | |
| 182 | CComBSTR newbstr; |
| 183 | newbstr.Append(s.data()); |
| 184 | newbstr.CopyTo(retstring); |
| 185 | return S_OK; |
| 186 | } |
| 187 | |
| 188 | STDMETHODIMP OpAutomation::ClientToScreen(LONGLONG hwnd, VARIANT *x, VARIANT *y, LONG *bret) { |
| 189 | x->vt = VT_I4; |
no test coverage detected