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

Function OpBindWindowEx

libop/c_api/op_c_api.cpp:487–493  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

485}
486
487int OP_CALL OpBindWindowEx(op_handle handle, intptr_t display_hwnd, intptr_t input_hwnd, const wchar_t *display,
488 const wchar_t *mouse, const wchar_t *keypad, int mode) {
489 return call_ret(handle, [&](op::Op &op, long *ret) {
490 op.BindWindowEx(static_cast<LONG_PTR>(display_hwnd), static_cast<LONG_PTR>(input_hwnd), safe_text(display),
491 safe_text(mouse), safe_text(keypad), mode, ret);
492 });
493}
494
495int OP_CALL OpUnBindWindow(op_handle handle) {
496 return call_ret(handle, [](op::Op &op, long *ret) { op.UnBindWindow(ret); });

Callers

nothing calls this directly

Calls 3

call_retFunction · 0.85
safe_textFunction · 0.85
BindWindowExMethod · 0.45

Tested by

no test coverage detected