| 126 | } |
| 127 | |
| 128 | void op::Op::FindWindowByProcess(const wchar_t *process_name, const wchar_t *class_name, const wchar_t *title, |
| 129 | LONG_PTR *rethwnd) { |
| 130 | |
| 131 | HWND hwnd = nullptr; |
| 132 | m_context->window_service.FindWindowByProcess(class_name, title, hwnd, process_name); |
| 133 | internal::set_result(rethwnd, hwnd_result(hwnd)); |
| 134 | } |
| 135 | |
| 136 | void op::Op::FindWindowByProcessId(long process_id, const wchar_t *class_name, const wchar_t *title, |
| 137 | LONG_PTR *rethwnd) { |
no test coverage detected