| 738 | } |
| 739 | |
| 740 | const wchar_t *OP_CALL OpFindColorBlockEx(op_handle handle, int x1, int y1, int x2, int y2, const wchar_t *color, |
| 741 | double sim, int count, int height, int width) { |
| 742 | return call_string(handle, [&](op::Op &op, std::wstring &ret) { |
| 743 | op.FindColorBlockEx(x1, y1, x2, y2, safe_text(color), sim, count, height, width, ret); |
| 744 | }); |
| 745 | } |
| 746 | |
| 747 | const wchar_t *OP_CALL OpGetColor(op_handle handle, int x, int y) { |
| 748 | return call_string(handle, [&](op::Op &op, std::wstring &ret) { op.GetColor(x, y, ret); }); |
nothing calls this directly
no test coverage detected