MCPcopy Create free account
hub / github.com/WallBreaker2/op / OpSendString

Function OpSendString

libop/c_api/op_c_api.cpp:434–438  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

432}
433
434int 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
440int OP_CALL OpSendStringIme(op_handle handle, intptr_t hwnd, const wchar_t *str) {
441 return call_ret(handle, [&](op::Op &op, long *ret) {

Callers

nothing calls this directly

Calls 3

call_retFunction · 0.85
safe_textFunction · 0.85
SendStringMethod · 0.45

Tested by

no test coverage detected