[SHELL32] try to fix testman hang, by "breaking" CreateViewWindow2 again

svn path=/trunk/; revision=72685
This commit is contained in:
Christoph von Wittich 2016-09-15 16:12:50 +00:00
parent a4ff747ee4
commit c18c4aa282

View file

@ -2518,9 +2518,12 @@ HRESULT STDMETHODCALLTYPE CDefView::CreateViewWindow2(LPSV2CVW2_PARAMS view_para
if (view_params->cbSize != sizeof(SV2CVW2_PARAMS))
return E_FAIL;
if (view_params->pvid != 0)
FIXME("SHELLVIEWID not handled\n");
if (view_params->pvid != NULL)
{
FIXME("SHELLVIEWID not handled, FAIL\n");
return E_NOTIMPL;
}
view_params->hwndView = 0;
TRACE("(%p)->(shlview=%p set=%p shlbrs=%p rec=%p hwnd=%p) incomplete\n", this, view_params->psvPrev, view_params->pfs, view_params->psbOwner, view_params->prcView, view_params->hwndView);