| 258 | } |
| 259 | |
| 260 | STDMETHODIMP OpAutomation::GetPointWindow(LONG x, LONG y, LONGLONG *rethwnd) { |
| 261 | LONG_PTR hwnd = 0; |
| 262 | obj.GetPointWindow(x, y, &hwnd); |
| 263 | return SetOutValue(rethwnd, hwnd); |
| 264 | } |
| 265 | |
| 266 | STDMETHODIMP OpAutomation::GetProcessInfo(LONG pid, BSTR *retstring) { |
| 267 | wstring s; |
no test coverage detected