Commit 18dbfaae authored by Juergen Schmied's avatar Juergen Schmied Committed by Alexandre Julliard

Implemented ILGetDisplayName.

parent 98f6cf0d
......@@ -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]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment