From 18dbfaae845e64f17ff926d21f86a2ce8932aa27 Mon Sep 17 00:00:00 2001 From: Juergen Schmied Date: Fri, 11 Dec 1998 11:05:24 +0000 Subject: [PATCH] Implemented ILGetDisplayName. --- dlls/shell32/pidl.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/dlls/shell32/pidl.c b/dlls/shell32/pidl.c index 7fee56536f0..6c25d0b2c33 100644 --- a/dlls/shell32/pidl.c +++ b/dlls/shell32/pidl.c @@ -53,10 +53,9 @@ void pdump (LPCITEMIDLIST pidl) /************************************************************************* * ILGetDisplayName [SHELL32.15] */ -BOOL32 WINAPI ILGetDisplayName(LPCITEMIDLIST iil,LPSTR path) -{ FIXME(pidl,"(%p,%p),stub, return e:!\n",iil,path); - strcpy(path,"e:\\"); - return TRUE; +BOOL32 WINAPI ILGetDisplayName(LPCITEMIDLIST pidl,LPSTR path) +{ FIXME(shell,"pidl=%p %p semi-stub\n",pidl,path); + return SHGetPathFromIDList32A(pidl, path); } /************************************************************************* * ILFindLastID [SHELL32.16] -- 2.11.4.GIT