| 71 | } |
| 72 | |
| 73 | STDMETHODIMP OpAutomation::GetBasePath(BSTR *path) { |
| 74 | |
| 75 | wstring s; |
| 76 | obj.GetBasePath(s); |
| 77 | |
| 78 | CComBSTR newstr; |
| 79 | newstr.Append(s.data()); |
| 80 | newstr.CopyTo(path); |
| 81 | return S_OK; |
| 82 | } |
| 83 | |
| 84 | STDMETHODIMP OpAutomation::GetID(LONG *ret) { |
| 85 | obj.GetID(ret); |
no test coverage detected