| 268 | } |
| 269 | |
| 270 | intptr_t OP_CALL OpFindWindowByProcess(op_handle handle, const wchar_t *process_name, const wchar_t *class_name, |
| 271 | const wchar_t *title) { |
| 272 | return call_intptr(handle, [&](op::Op &op, LONG_PTR *ret) { |
| 273 | op.FindWindowByProcess(safe_text(process_name), safe_text(class_name), safe_text(title), ret); |
| 274 | }); |
| 275 | } |
| 276 | |
| 277 | intptr_t OP_CALL OpFindWindowByProcessId(op_handle handle, int process_id, const wchar_t *class_name, |
| 278 | const wchar_t *title) { |
nothing calls this directly
no test coverage detected