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

Function OpEnumWindowByProcess

libop/c_api/op_c_api.cpp:245–250  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

243}
244
245const wchar_t *OP_CALL OpEnumWindowByProcess(op_handle handle, const wchar_t *process_name, const wchar_t *title,
246 const wchar_t *class_name, int filter) {
247 return call_string(handle, [&](op::Op &op, std::wstring &ret) {
248 op.EnumWindowByProcess(safe_text(process_name), safe_text(title), safe_text(class_name), filter, ret);
249 });
250}
251
252const wchar_t *OP_CALL OpEnumProcess(op_handle handle, const wchar_t *name) {
253 return call_string(handle, [&](op::Op &op, std::wstring &ret) { op.EnumProcess(safe_text(name), ret); });

Callers

nothing calls this directly

Calls 3

call_stringFunction · 0.85
safe_textFunction · 0.85
EnumWindowByProcessMethod · 0.45

Tested by

no test coverage detected