| 338 | } |
| 339 | |
| 340 | const wchar_t *OP_CALL OpGetWindowClass(op_handle handle, intptr_t hwnd) { |
| 341 | return call_string(handle, [&](op::Op &op, std::wstring &ret) { |
| 342 | op.GetWindowClass(static_cast<LONG_PTR>(hwnd), ret); |
| 343 | }); |
| 344 | } |
| 345 | |
| 346 | int OP_CALL OpGetWindowProcessId(op_handle handle, intptr_t hwnd) { |
| 347 | return call_ret(handle, [&](op::Op &op, long *ret) { op.GetWindowProcessId(static_cast<LONG_PTR>(hwnd), ret); }); |
nothing calls this directly
no test coverage detected