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

Function OpGetWindowClass

libop/c_api/op_c_api.cpp:340–344  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

338}
339
340const wchar_t *OP_CALL OpGetWindowClass(op_handle handle, intptr_t hwnd) {
341 return call_string(handle, [&](op::Op &op, std::wstring &ret) {
342 op.GetWindowClass(static_cast<LONG_PTR>(hwnd), ret);
343 });
344}
345
346int OP_CALL OpGetWindowProcessId(op_handle handle, intptr_t hwnd) {
347 return call_ret(handle, [&](op::Op &op, long *ret) { op.GetWindowProcessId(static_cast<LONG_PTR>(hwnd), ret); });

Callers

nothing calls this directly

Calls 2

call_stringFunction · 0.85
GetWindowClassMethod · 0.45

Tested by

no test coverage detected