windows-nt/Source/XPSP1/NT/shell/ext/hnw/wizard/shell.cpp

15 lines
249 B
C++
Raw Normal View History

2020-09-26 03:20:57 -05:00
// we can link to these directly instead of implementing them ourselves...
//
void ILFree(LPITEMIDLIST pidl)
{
LPMALLOC pMalloc;
if (SUCCEEDED(SHGetMalloc(&pMalloc)))
{
pMalloc->Free(pidl);
pMalloc->Release();
}
}