| 365 | } |
| 366 | |
| 367 | int OP_CALL OpGetWindowState(op_handle handle, intptr_t hwnd, int flag) { |
| 368 | return call_ret(handle, [&](op::Op &op, long *ret) { op.GetWindowState(static_cast<LONG_PTR>(hwnd), flag, ret); }); |
| 369 | } |
| 370 | |
| 371 | const wchar_t *OP_CALL OpGetWindowTitle(op_handle handle, intptr_t hwnd) { |
| 372 | return call_string(handle, [&](op::Op &op, std::wstring &ret) { |
nothing calls this directly
no test coverage detected