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

Function OpFindWindowEx

libop/c_api/op_c_api.cpp:284–288  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

282}
283
284intptr_t OP_CALL OpFindWindowEx(op_handle handle, intptr_t parent, const wchar_t *class_name, const wchar_t *title) {
285 return call_intptr(handle, [&](op::Op &op, LONG_PTR *ret) {
286 op.FindWindowEx(static_cast<LONG_PTR>(parent), safe_text(class_name), safe_text(title), ret);
287 });
288}
289
290int OP_CALL OpGetClientRect(op_handle handle, intptr_t hwnd, int *x1, int *y1, int *x2, int *y2) {
291 return call_ret(handle, [&](op::Op &op, long *ret) {

Callers

nothing calls this directly

Calls 3

call_intptrFunction · 0.85
safe_textFunction · 0.85
FindWindowExMethod · 0.45

Tested by

no test coverage detected