mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
rename _FS_ProcessDisplayFilename to SHELL_FS_ProcessDisplayFilename() -> Wine naming rule for internal functions
svn path=/trunk/; revision=7712
This commit is contained in:
parent
31273508a7
commit
ef40097fff
3 changed files with 4 additions and 4 deletions
|
@ -55,4 +55,4 @@ static inline int SHELL32_GUIDToStringA (REFGUID guid, LPSTR str)
|
||||||
guid->Data4[4], guid->Data4[5], guid->Data4[6], guid->Data4[7]);
|
guid->Data4[4], guid->Data4[5], guid->Data4[6], guid->Data4[7]);
|
||||||
}
|
}
|
||||||
|
|
||||||
void _FS_ProcessDisplayFilename(LPSTR szPath, DWORD dwFlags);
|
void SHELL_FS_ProcessDisplayFilename(LPSTR szPath, DWORD dwFlags);
|
||||||
|
|
|
@ -517,7 +517,7 @@ static HRESULT WINAPI ISF_Desktop_fnGetDisplayNameOf (IShellFolder2 * iface,
|
||||||
_ILSimpleGetText (pidl, szPath, MAX_PATH);
|
_ILSimpleGetText (pidl, szPath, MAX_PATH);
|
||||||
|
|
||||||
if (!_ILIsFolder(pidl))
|
if (!_ILIsFolder(pidl))
|
||||||
_FS_ProcessDisplayFilename(szPath, dwFlags);
|
SHELL_FS_ProcessDisplayFilename(szPath, dwFlags);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
/* a complex pidl, let the subfolder do the work */
|
/* a complex pidl, let the subfolder do the work */
|
||||||
|
|
|
@ -592,7 +592,7 @@ IShellFolder_fnGetUIObjectOf (IShellFolder2 * iface,
|
||||||
return hr;
|
return hr;
|
||||||
}
|
}
|
||||||
|
|
||||||
void _FS_ProcessDisplayFilename(LPSTR szPath, DWORD dwFlags)
|
void SHELL_FS_ProcessDisplayFilename(LPSTR szPath, DWORD dwFlags)
|
||||||
{
|
{
|
||||||
/*FIXME: MSDN also mentions SHGDN_FOREDITING which is not yet handled. */
|
/*FIXME: MSDN also mentions SHGDN_FOREDITING which is not yet handled. */
|
||||||
if (!(dwFlags & SHGDN_FORPARSING) &&
|
if (!(dwFlags & SHGDN_FORPARSING) &&
|
||||||
|
@ -682,7 +682,7 @@ IShellFolder_fnGetDisplayNameOf (IShellFolder2 * iface, LPCITEMIDLIST pidl, DWOR
|
||||||
_ILSimpleGetText (pidl, szPath + len, MAX_PATH - len); /* append my own path */
|
_ILSimpleGetText (pidl, szPath + len, MAX_PATH - len); /* append my own path */
|
||||||
|
|
||||||
if (!_ILIsFolder(pidl))
|
if (!_ILIsFolder(pidl))
|
||||||
_FS_ProcessDisplayFilename(szPath, dwFlags);
|
SHELL_FS_ProcessDisplayFilename(szPath, dwFlags);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((dwFlags & SHGDN_FORPARSING) && !bSimplePidl) { /* go deeper if needed */
|
if ((dwFlags & SHGDN_FORPARSING) && !bSimplePidl) { /* go deeper if needed */
|
||||||
|
|
Loading…
Reference in a new issue