| 228 | } |
| 229 | |
| 230 | const wchar_t *OP_CALL OpFindNearestPos(op_handle handle, const wchar_t *all_pos, int type, int x, int y) { |
| 231 | return call_string(handle, [&](op::Op &op, std::wstring &ret) { |
| 232 | op.FindNearestPos(safe_text(all_pos), type, x, y, ret); |
| 233 | }); |
| 234 | } |
| 235 | |
| 236 | // Window and process |
| 237 |
nothing calls this directly
no test coverage detected