ILAppend seems to work now.
This commit is contained in:
parent
45459a55d4
commit
edfca5b7fe
|
@ -403,7 +403,12 @@ LPITEMIDLIST WINAPI ILAppend(LPITEMIDLIST pidl,LPCITEMIDLIST item,BOOL32 bEnd)
|
|||
SHFree (pidl);
|
||||
return idlRet;
|
||||
}
|
||||
idlRet=ILCombine(pidl,item);
|
||||
if (bEnd)
|
||||
{ idlRet=ILCombine(pidl,item);
|
||||
}
|
||||
else
|
||||
{ idlRet=ILCombine(item,pidl);
|
||||
}
|
||||
SHFree(pidl);
|
||||
return idlRet;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue