mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
fix for mingw build
svn path=/trunk/; revision=6095
This commit is contained in:
parent
b0665e94ab
commit
2efa56ff58
1 changed files with 2 additions and 2 deletions
|
@ -329,8 +329,8 @@ LPITEMIDLIST ShellPath::create_absolute_pidl(LPCITEMIDLIST parent_pidl, HWND hwn
|
|||
{
|
||||
static DynamicFct<LPITEMIDLIST(WINAPI*)(LPCITEMIDLIST, LPCITEMIDLIST)> ILCombine(_T("SHELL32"), 25);
|
||||
|
||||
if (ILCombine.found())
|
||||
return ILCombine(parent_pidl, _p);
|
||||
if (ILCombine)
|
||||
return (*ILCombine)(parent_pidl, _p);
|
||||
|
||||
// create a new item id list with _p append behind parent_pidl
|
||||
int l1 = _malloc->GetSize((void*)parent_pidl) - sizeof(USHORT/*SHITEMID::cb*/);
|
||||
|
|
Loading…
Reference in a new issue