| 282 | } |
| 283 | |
| 284 | intptr_t OP_CALL OpFindWindowEx(op_handle handle, intptr_t parent, const wchar_t *class_name, const wchar_t *title) { |
| 285 | return call_intptr(handle, [&](op::Op &op, LONG_PTR *ret) { |
| 286 | op.FindWindowEx(static_cast<LONG_PTR>(parent), safe_text(class_name), safe_text(title), ret); |
| 287 | }); |
| 288 | } |
| 289 | |
| 290 | int OP_CALL OpGetClientRect(op_handle handle, intptr_t hwnd, int *x1, int *y1, int *x2, int *y2) { |
| 291 | return call_ret(handle, [&](op::Op &op, long *ret) { |
nothing calls this directly
no test coverage detected