mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
[SHELL] Fix more IPersistFolder::Initialize prototypes. CORE-16385
Addendum to c2b476bd77
.
This commit is contained in:
parent
e995147a1c
commit
6b0d2c2a2c
3 changed files with 3 additions and 3 deletions
|
@ -815,7 +815,7 @@ HRESULT WINAPI CDesktopFolder::GetClassID(CLSID *lpClassId)
|
|||
return S_OK;
|
||||
}
|
||||
|
||||
HRESULT WINAPI CDesktopFolder::Initialize(LPCITEMIDLIST pidl)
|
||||
HRESULT WINAPI CDesktopFolder::Initialize(PCIDLIST_ABSOLUTE pidl)
|
||||
{
|
||||
TRACE ("(%p)->(%p)\n", this, pidl);
|
||||
|
||||
|
|
|
@ -1054,7 +1054,7 @@ HRESULT WINAPI CDrivesFolder::GetClassID(CLSID *lpClassId)
|
|||
*
|
||||
* 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;
|
||||
}
|
||||
|
|
|
@ -1369,7 +1369,7 @@ HRESULT WINAPI CFSFolder::GetClassID(CLSID * lpClassId)
|
|||
* NOTES
|
||||
* 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];
|
||||
|
||||
|
|
Loading…
Reference in a new issue