windows-nt/Source/XPSP1/NT/shell/ext/hnw/wizard/shell.cpp
2020-09-26 16:20:57 +08:00

15 lines
249 B
C++

// 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();
}
}