Module: wine Branch: master Commit: 8246b6cd302505c8204e6e54d2524e35f4d71808 URL: http://source.winehq.org/git/wine.git/?a=commit;h=8246b6cd302505c8204e6e54d2... Author: Andrew Talbot <Andrew.Talbot(a)talbotville.com> Date: Mon Feb 5 21:20:06 2007 +0000 shell32: Remove unused function. --- dlls/shell32/shlexec.c | 19 ------------------- 1 files changed, 0 insertions(+), 19 deletions(-) diff --git a/dlls/shell32/shlexec.c b/dlls/shell32/shlexec.c index 88ee3e6..900cea6 100644 --- a/dlls/shell32/shlexec.c +++ b/dlls/shell32/shlexec.c @@ -295,25 +295,6 @@ static BOOL SHELL_ArgifyW(WCHAR* out, in return found_p1; } -HRESULT SHELL_GetPathFromIDListForExecuteA(LPCITEMIDLIST pidl, LPSTR pszPath, UINT uOutSize) -{ - STRRET strret; - IShellFolder* desktop; - - HRESULT hr = SHGetDesktopFolder(&desktop); - - if (SUCCEEDED(hr)) { - hr = IShellFolder_GetDisplayNameOf(desktop, pidl, SHGDN_FORPARSING, &strret); - - if (SUCCEEDED(hr)) - StrRetToStrNA(pszPath, uOutSize, &strret, pidl); - - IShellFolder_Release(desktop); - } - - return hr; -} - HRESULT SHELL_GetPathFromIDListForExecuteW(LPCITEMIDLIST pidl, LPWSTR pszPath, UINT uOutSize) { STRRET strret;