[BROWSEUI] Move _ILIsDesktop to a shared header to avoid having 3 instances of it

This commit is contained in:
Giannis Adamopoulos 2017-12-07 23:24:32 +02:00
parent 9443165625
commit d163627319
4 changed files with 5 additions and 29 deletions

View file

@ -54,12 +54,6 @@ static BOOL _ILIsSpecialFolder (LPCITEMIDLIST pidl)
PT_YAGUID == lpPData->type)) || (pidl && pidl->mkid.cb == 0x00)));
}
static BOOL _ILIsDesktop (LPCITEMIDLIST pidl)
{
return (pidl && pidl->mkid.cb == 0x00);
}
HRESULT GetDisplayName(LPCITEMIDLIST pidlDirectory,TCHAR *szDisplayName,UINT cchMax,DWORD uFlags)
{
IShellFolder *pShellFolder = NULL;

View file

@ -21,6 +21,11 @@
#pragma once
extern inline BOOL _ILIsDesktop(LPCITEMIDLIST pidl)
{
return (pidl == NULL || pidl->mkid.cb == 0);
}
class CBandSiteBase :
public CComObjectRootEx<CComMultiThreadModelNoCS>,
public IBandSite,

View file

@ -22,24 +22,6 @@ TODO:
** Implement responding to theme change
*/
// ***Extras***
/*++
* @name _ILIsDesktop
*
* Checks whether the given PIDL is of Desktop folder or not.
*
* @param pidl
* PIDL to be checked.
*
* @return True if PIDL is of Desktop, otherwise false.
*
*--*/
static BOOL _ILIsDesktop(LPCITEMIDLIST pidl)
{
return (pidl == NULL || pidl->mkid.cb == 0);
}
//*****************************************************************************************
// *** CISFBand ***

View file

@ -818,11 +818,6 @@ HRESULT CShellBrowser::BrowseToPIDL(LPCITEMIDLIST pidl, long flags)
return S_OK;
}
BOOL WINAPI _ILIsDesktop(LPCITEMIDLIST pidl)
{
return (pidl == NULL || pidl->mkid.cb == 0);
}
BOOL WINAPI _ILIsPidlSimple(LPCITEMIDLIST pidl)
{
LPCITEMIDLIST pidlnext;