| 316 | } |
| 317 | |
| 318 | intptr_t OP_CALL OpGetMousePointWindow(op_handle handle) { |
| 319 | return call_intptr(handle, [](op::Op &op, LONG_PTR *ret) { op.GetMousePointWindow(ret); }); |
| 320 | } |
| 321 | |
| 322 | intptr_t OP_CALL OpGetPointWindow(op_handle handle, int x, int y) { |
| 323 | return call_intptr(handle, [&](op::Op &op, LONG_PTR *ret) { op.GetPointWindow(x, y, ret); }); |
nothing calls this directly
no test coverage detected