[SHELL32]

- All shell folders must have the IPersistFolder. Hence their Initialize method is supposed to succeed for them to actually work.

svn path=/trunk/; revision=68884
This commit is contained in:
Giannis Adamopoulos 2015-08-31 23:12:03 +00:00
parent 3f45fd516a
commit 5d50aaffdd
2 changed files with 2 additions and 2 deletions

View file

@ -256,7 +256,7 @@ HRESULT WINAPI CMyDocsFolder::Initialize(LPCITEMIDLIST pidl)
{
TRACE ("(%p)->(%p)\n", this, pidl);
return E_NOTIMPL;
return S_OK;
}
HRESULT WINAPI CMyDocsFolder::GetCurFolder(LPITEMIDLIST *pidl)

View file

@ -494,7 +494,7 @@ HRESULT WINAPI CNetFolder::Initialize(LPCITEMIDLIST pidl)
{
TRACE("(%p)->(%p)\n", this, pidl);
return E_NOTIMPL;
return S_OK;
}
/**************************************************************************