[SHELL32] Follow-up of #2076 (#2091)

Fix EXE and SCR file icons. CORE-16533
This commit is contained in:
Katayama Hirofumi MZ 2019-11-26 21:45:58 +09:00 committed by GitHub
parent bd25333e24
commit cfdbccf937
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 15 deletions

View file

@ -138,21 +138,6 @@ HRESULT STDMETHODCALLTYPE CExtractIcon::SetNormalIcon(
{
TRACE("(%p, %s, %d)\n", this, debugstr_w(pszFile), iIcon);
if (lstrcmpiW(PathFindExtensionW(pszFile), L".exe") == 0)
{
if (!PrivateExtractIconExW(pszFile, 0, NULL, NULL, 1))
{
WCHAR szPath[MAX_PATH];
GetModuleFileNameW(shell32_hInstance, szPath, _countof(szPath));
DuplicateString(szPath, &normalIcon.file);
if (!normalIcon.file)
return E_OUTOFMEMORY;
normalIcon.index = -IDI_SHELL_EXE;
return S_OK;
}
}
DuplicateString(pszFile, &normalIcon.file);
if (!normalIcon.file)
return E_OUTOFMEMORY;

View file

@ -312,6 +312,13 @@ HRESULT CFSExtractIcon_CreateInstance(IShellFolder * psf, LPCITEMIDLIST pidl, RE
{
ILGetDisplayNameExW(psf, pidl, wTemp, ILGDN_FORPARSING);
icon_idx = 0;
INT ret = ExtractIconExW(wTemp, -1, NULL, NULL, 0);
if (ret <= 0)
{
StringCbCopyW(wTemp, sizeof(wTemp), swShell32Name);
icon_idx = -IDI_SHELL_EXE;
}
}
initIcon->SetNormalIcon(wTemp, icon_idx);