| 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); }); |
| 749 | } |
| 750 | |
| 751 | int OP_CALL OpGetColorNum(op_handle handle, int x1, int y1, int x2, int y2, const wchar_t *color, double sim) { |
| 752 | return call_ret(handle, [&](op::Op &op, long *ret) { op.GetColorNum(x1, y1, x2, y2, safe_text(color), sim, ret); }); |
nothing calls this directly
no test coverage detected