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

Function OpGetWindowProcessPath

libop/c_api/op_c_api.cpp:350–354  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

348}
349
350const wchar_t *OP_CALL OpGetWindowProcessPath(op_handle handle, intptr_t hwnd) {
351 return call_string(handle, [&](op::Op &op, std::wstring &ret) {
352 op.GetWindowProcessPath(static_cast<LONG_PTR>(hwnd), ret);
353 });
354}
355
356int OP_CALL OpGetWindowRect(op_handle handle, intptr_t hwnd, int *x1, int *y1, int *x2, int *y2) {
357 return call_ret(handle, [&](op::Op &op, long *ret) {

Callers

nothing calls this directly

Calls 2

call_stringFunction · 0.85
GetWindowProcessPathMethod · 0.45

Tested by

no test coverage detected