Commit edfca5b7 authored by Juergen Schmied's avatar Juergen Schmied Committed by Alexandre Julliard

ILAppend seems to work now.

parent 45459a55
...@@ -403,7 +403,12 @@ LPITEMIDLIST WINAPI ILAppend(LPITEMIDLIST pidl,LPCITEMIDLIST item,BOOL32 bEnd) ...@@ -403,7 +403,12 @@ LPITEMIDLIST WINAPI ILAppend(LPITEMIDLIST pidl,LPCITEMIDLIST item,BOOL32 bEnd)
SHFree (pidl); SHFree (pidl);
return idlRet; return idlRet;
} }
idlRet=ILCombine(pidl,item); if (bEnd)
{ idlRet=ILCombine(pidl,item);
}
else
{ idlRet=ILCombine(item,pidl);
}
SHFree(pidl); SHFree(pidl);
return idlRet; return idlRet;
} }
......
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