[SHELL] Fix more IPersistFolder::Initialize prototypes. CORE-16385

Addendum to c2b476bd77.
This commit is contained in:
Thomas Faber 2019-09-22 16:38:06 +02:00
parent e995147a1c
commit 6b0d2c2a2c
No known key found for this signature in database
GPG key ID: 076E7C3D44720826
3 changed files with 3 additions and 3 deletions

View file

@ -815,7 +815,7 @@ HRESULT WINAPI CDesktopFolder::GetClassID(CLSID *lpClassId)
return S_OK; return S_OK;
} }
HRESULT WINAPI CDesktopFolder::Initialize(LPCITEMIDLIST pidl) HRESULT WINAPI CDesktopFolder::Initialize(PCIDLIST_ABSOLUTE pidl)
{ {
TRACE ("(%p)->(%p)\n", this, pidl); TRACE ("(%p)->(%p)\n", this, pidl);

View file

@ -1054,7 +1054,7 @@ HRESULT WINAPI CDrivesFolder::GetClassID(CLSID *lpClassId)
* *
* NOTES: it makes no sense to change the pidl * NOTES: it makes no sense to change the pidl
*/ */
HRESULT WINAPI CDrivesFolder::Initialize(LPCITEMIDLIST pidl) HRESULT WINAPI CDrivesFolder::Initialize(PCIDLIST_ABSOLUTE pidl)
{ {
return S_OK; return S_OK;
} }

View file

@ -1369,7 +1369,7 @@ HRESULT WINAPI CFSFolder::GetClassID(CLSID * lpClassId)
* NOTES * NOTES
* sPathTarget is not set. Don't know how to handle in a non rooted environment. * sPathTarget is not set. Don't know how to handle in a non rooted environment.
*/ */
HRESULT WINAPI CFSFolder::Initialize(LPCITEMIDLIST pidl) HRESULT WINAPI CFSFolder::Initialize(PCIDLIST_ABSOLUTE pidl)
{ {
WCHAR wszTemp[MAX_PATH]; WCHAR wszTemp[MAX_PATH];