| 324 | } |
| 325 | |
| 326 | const wchar_t *OP_CALL OpGetProcessInfo(op_handle handle, int pid) { |
| 327 | return call_string(handle, [&](op::Op &op, std::wstring &ret) { op.GetProcessInfo(pid, ret); }); |
| 328 | } |
| 329 | |
| 330 | intptr_t OP_CALL OpGetSpecialWindow(op_handle handle, int flag) { |
| 331 | return call_intptr(handle, [&](op::Op &op, LONG_PTR *ret) { op.GetSpecialWindow(flag, ret); }); |
nothing calls this directly
no test coverage detected