| 432 | } |
| 433 | |
| 434 | int OP_CALL OpSendString(op_handle handle, intptr_t hwnd, const wchar_t *str) { |
| 435 | return call_ret(handle, [&](op::Op &op, long *ret) { |
| 436 | op.SendString(static_cast<LONG_PTR>(hwnd), safe_text(str), ret); |
| 437 | }); |
| 438 | } |
| 439 | |
| 440 | int OP_CALL OpSendStringIme(op_handle handle, intptr_t hwnd, const wchar_t *str) { |
| 441 | return call_ret(handle, [&](op::Op &op, long *ret) { |
nothing calls this directly
no test coverage detected