Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 1378 of file shelllink.cpp.
Referenced by CShellLink::GetIconLocation().
{ LPCITEMIDLIST pidlLast; UINT wFlags; HRESULT hr = SHBindToParent(pidl, IID_IShellFolder, (LPVOID*)&psf, &pidlLast); if (SUCCEEDED(hr)) { CComPtr<IExtractIconW> pei; hr = psf->GetUIObjectOf(0, 1, &pidlLast, IID_IExtractIconW, NULL, (LPVOID*)&pei); if (SUCCEEDED(hr)) hr = pei->GetIconLocation(0, pszIconPath, MAX_PATH, piIcon, &wFlags); psf->Release(); } return hr; }