rename _FS_ProcessDisplayFilename to SHELL_FS_ProcessDisplayFilename() -> Wine naming rule for internal functions

svn path=/trunk/; revision=7712
This commit is contained in:
Martin Fuchs 2004-01-17 11:10:18 +00:00
parent 31273508a7
commit ef40097fff
3 changed files with 4 additions and 4 deletions

View file

@ -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]);
}
void _FS_ProcessDisplayFilename(LPSTR szPath, DWORD dwFlags);
void SHELL_FS_ProcessDisplayFilename(LPSTR szPath, DWORD dwFlags);

View file

@ -517,7 +517,7 @@ static HRESULT WINAPI ISF_Desktop_fnGetDisplayNameOf (IShellFolder2 * iface,
_ILSimpleGetText (pidl, szPath, MAX_PATH);
if (!_ILIsFolder(pidl))
_FS_ProcessDisplayFilename(szPath, dwFlags);
SHELL_FS_ProcessDisplayFilename(szPath, dwFlags);
}
} else {
/* a complex pidl, let the subfolder do the work */

View file

@ -592,7 +592,7 @@ IShellFolder_fnGetUIObjectOf (IShellFolder2 * iface,
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. */
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 */
if (!_ILIsFolder(pidl))
_FS_ProcessDisplayFilename(szPath, dwFlags);
SHELL_FS_ProcessDisplayFilename(szPath, dwFlags);
}
if ((dwFlags & SHGDN_FORPARSING) && !bSimplePidl) { /* go deeper if needed */