Commit 2a925eba authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

wshom.ocx: Implement ProcessID() property.

parent 1d0fbb21
......@@ -236,9 +236,13 @@ static HRESULT WINAPI WshExec_get_ProcessID(IWshExec *iface, DWORD *pid)
{
WshExec *This = impl_from_IWshExec(iface);
FIXME("(%p)->(%p): stub\n", This, pid);
TRACE("(%p)->(%p)\n", This, pid);
return E_NOTIMPL;
if (!pid)
return E_INVALIDARG;
*pid = This->info.dwProcessId;
return S_OK;
}
static HRESULT WINAPI WshExec_get_ExitCode(IWshExec *iface, DWORD *code)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment