| 243 | } |
| 244 | |
| 245 | const 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 | |
| 252 | const 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); }); |
nothing calls this directly
no test coverage detected