wshom.ocx: Implement ProcessID() property.

This commit is contained in:
Nikolay Sivov 2015-03-09 20:10:47 +03:00 committed by Alexandre Julliard
parent 1d0fbb2160
commit 2a925eba20
1 changed files with 6 additions and 2 deletions

View File

@ -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)