Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
249 B

  1. // we can link to these directly instead of implementing them ourselves...
  2. //
  3. void ILFree(LPITEMIDLIST pidl)
  4. {
  5. LPMALLOC pMalloc;
  6. if (SUCCEEDED(SHGetMalloc(&pMalloc)))
  7. {
  8. pMalloc->Free(pidl);
  9. pMalloc->Release();
  10. }
  11. }