2005-02-09 18:18:20 +00:00
|
|
|
/*
|
|
|
|
* Copyright 1997 Marcus Meissner
|
|
|
|
* Copyright 1998 Juergen Schmied
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2007-10-11 18:07:01 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2005-02-09 18:18:20 +00:00
|
|
|
*/
|
|
|
|
|
2008-08-26 15:50:23 +00:00
|
|
|
#include <precomp.h>
|
2005-02-09 18:18:20 +00:00
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(shell);
|
|
|
|
|
2007-10-23 09:09:46 +00:00
|
|
|
WCHAR swShell32Name[MAX_PATH];
|
2005-02-09 18:18:20 +00:00
|
|
|
|
2009-05-09 20:03:08 +00:00
|
|
|
DWORD NumIconOverlayHandlers = 0;
|
|
|
|
IShellIconOverlayIdentifier ** Handlers = NULL;
|
|
|
|
|
2007-10-23 09:09:46 +00:00
|
|
|
static HRESULT getIconLocationForFolder(LPCITEMIDLIST pidl, UINT uFlags,
|
2005-02-09 18:18:20 +00:00
|
|
|
LPWSTR szIconFile, UINT cchMax, int *piIndex, UINT *pwFlags)
|
|
|
|
{
|
2007-10-11 18:07:01 +00:00
|
|
|
int icon_idx;
|
2005-02-09 18:18:20 +00:00
|
|
|
WCHAR wszPath[MAX_PATH];
|
|
|
|
WCHAR wszCLSIDValue[CHARS_IN_GUID];
|
|
|
|
static const WCHAR shellClassInfo[] = { '.','S','h','e','l','l','C','l','a','s','s','I','n','f','o',0 };
|
|
|
|
static const WCHAR iconFile[] = { 'I','c','o','n','F','i','l','e',0 };
|
|
|
|
static const WCHAR clsid[] = { 'C','L','S','I','D',0 };
|
|
|
|
static const WCHAR clsid2[] = { 'C','L','S','I','D','2',0 };
|
|
|
|
static const WCHAR iconIndex[] = { 'I','c','o','n','I','n','d','e','x',0 };
|
|
|
|
|
2007-10-23 09:09:46 +00:00
|
|
|
if (SHELL32_GetCustomFolderAttribute(pidl, shellClassInfo, iconFile,
|
2005-02-09 18:18:20 +00:00
|
|
|
wszPath, MAX_PATH))
|
|
|
|
{
|
|
|
|
WCHAR wszIconIndex[10];
|
2007-10-23 09:09:46 +00:00
|
|
|
SHELL32_GetCustomFolderAttribute(pidl, shellClassInfo, iconIndex,
|
2005-02-09 18:18:20 +00:00
|
|
|
wszIconIndex, 10);
|
2008-08-26 15:50:23 +00:00
|
|
|
*piIndex = _wtoi(wszIconIndex);
|
2005-02-09 18:18:20 +00:00
|
|
|
}
|
2007-10-23 09:09:46 +00:00
|
|
|
else if (SHELL32_GetCustomFolderAttribute(pidl, shellClassInfo, clsid,
|
2005-02-09 18:18:20 +00:00
|
|
|
wszCLSIDValue, CHARS_IN_GUID) &&
|
2007-10-11 18:07:01 +00:00
|
|
|
HCR_GetDefaultIconW(wszCLSIDValue, szIconFile, cchMax, &icon_idx))
|
2005-02-09 18:18:20 +00:00
|
|
|
{
|
2007-10-11 18:07:01 +00:00
|
|
|
*piIndex = icon_idx;
|
2005-02-09 18:18:20 +00:00
|
|
|
}
|
2007-10-23 09:09:46 +00:00
|
|
|
else if (SHELL32_GetCustomFolderAttribute(pidl, shellClassInfo, clsid2,
|
2005-02-09 18:18:20 +00:00
|
|
|
wszCLSIDValue, CHARS_IN_GUID) &&
|
2007-10-11 18:07:01 +00:00
|
|
|
HCR_GetDefaultIconW(wszCLSIDValue, szIconFile, cchMax, &icon_idx))
|
2005-02-09 18:18:20 +00:00
|
|
|
{
|
2007-10-11 18:07:01 +00:00
|
|
|
*piIndex = icon_idx;
|
2005-02-09 18:18:20 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
static const WCHAR folder[] = { 'F','o','l','d','e','r',0 };
|
|
|
|
|
2007-10-11 18:07:01 +00:00
|
|
|
if (!HCR_GetDefaultIconW(folder, szIconFile, cchMax, &icon_idx))
|
2005-02-09 18:18:20 +00:00
|
|
|
{
|
|
|
|
lstrcpynW(szIconFile, swShell32Name, cchMax);
|
2007-10-11 18:07:01 +00:00
|
|
|
icon_idx = -IDI_SHELL_FOLDER;
|
2005-02-09 18:18:20 +00:00
|
|
|
}
|
2007-10-11 18:07:01 +00:00
|
|
|
|
|
|
|
if (uFlags & GIL_OPENICON)
|
|
|
|
*piIndex = icon_idx<0? icon_idx-1: icon_idx+1;
|
|
|
|
else
|
|
|
|
*piIndex = icon_idx;
|
2005-02-09 18:18:20 +00:00
|
|
|
}
|
2007-10-11 18:07:01 +00:00
|
|
|
|
2005-02-09 18:18:20 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2009-05-09 20:03:08 +00:00
|
|
|
void InitIconOverlays(void)
|
|
|
|
{
|
|
|
|
HKEY hKey;
|
|
|
|
DWORD dwIndex, dwResult, dwSize;
|
|
|
|
WCHAR szName[MAX_PATH];
|
|
|
|
WCHAR szValue[100];
|
|
|
|
CLSID clsid;
|
|
|
|
IShellIconOverlayIdentifier * Overlay;
|
|
|
|
|
|
|
|
if (RegOpenKeyExW(HKEY_LOCAL_MACHINE, L"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\ShellIconOverlayIdentifiers",0, KEY_READ, &hKey) != ERROR_SUCCESS)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (RegQueryInfoKeyW(hKey, NULL, NULL, NULL, &dwResult, NULL, NULL, NULL, NULL, NULL, NULL, NULL) != ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
RegCloseKey(hKey);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Handlers = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, dwResult * sizeof(IShellIconOverlayIdentifier*));
|
|
|
|
if (!Handlers)
|
|
|
|
{
|
|
|
|
RegCloseKey(hKey);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
dwIndex = 0;
|
|
|
|
|
|
|
|
CoInitialize(0);
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
dwSize = sizeof(szName) / sizeof(WCHAR);
|
|
|
|
dwResult = RegEnumKeyExW(hKey, dwIndex, szName, &dwSize, NULL, NULL, NULL, NULL);
|
|
|
|
|
|
|
|
if (dwResult == ERROR_NO_MORE_ITEMS)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (dwResult == ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
dwSize = sizeof(szValue) / sizeof(WCHAR);
|
|
|
|
if (RegGetValueW(hKey, szName, NULL, RRF_RT_REG_SZ, NULL, szValue, &dwSize) == ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
|
|
|
|
CLSIDFromString(szValue, &clsid);
|
|
|
|
dwResult = CoCreateInstance(&clsid, NULL, CLSCTX_INPROC_SERVER, &IID_IUnknown, (LPVOID*)&Overlay);
|
|
|
|
if (dwResult == S_OK)
|
|
|
|
{
|
|
|
|
Handlers[NumIconOverlayHandlers] = Overlay;
|
|
|
|
NumIconOverlayHandlers++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dwIndex++;
|
|
|
|
|
|
|
|
}while(1);
|
|
|
|
|
|
|
|
RegCloseKey(hKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL
|
|
|
|
GetIconOverlay(LPCITEMIDLIST pidl, WCHAR * wTemp, int* pIndex)
|
|
|
|
{
|
|
|
|
DWORD Index;
|
|
|
|
HRESULT hResult;
|
|
|
|
int Priority;
|
|
|
|
int HighestPriority;
|
|
|
|
ULONG IconIndex;
|
|
|
|
ULONG Flags;
|
|
|
|
WCHAR szPath[MAX_PATH];
|
|
|
|
|
|
|
|
if(!SHGetPathFromIDListW(pidl, szPath))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
|
|
HighestPriority = 101;
|
|
|
|
IconIndex = NumIconOverlayHandlers;
|
|
|
|
for(Index = 0; Index < NumIconOverlayHandlers; Index++)
|
|
|
|
{
|
|
|
|
hResult = Handlers[Index]->lpVtbl->IsMemberOf(Handlers[Index], szPath, SFGAO_FILESYSTEM);
|
|
|
|
if (hResult == S_OK)
|
|
|
|
{
|
|
|
|
hResult = Handlers[Index]->lpVtbl->GetPriority(Handlers[Index], &Priority);
|
|
|
|
if (hResult == S_OK)
|
|
|
|
{
|
|
|
|
if (Priority < HighestPriority)
|
|
|
|
{
|
|
|
|
HighestPriority = Priority;
|
|
|
|
IconIndex = Index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IconIndex == NumIconOverlayHandlers)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
hResult = Handlers[IconIndex]->lpVtbl->GetOverlayInfo(Handlers[IconIndex], wTemp, MAX_PATH, pIndex, &Flags);
|
|
|
|
|
|
|
|
if (hResult == S_OK)
|
|
|
|
return TRUE;
|
|
|
|
else
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2005-02-09 18:18:20 +00:00
|
|
|
/**************************************************************************
|
2007-10-23 09:09:46 +00:00
|
|
|
* IExtractIconW_Constructor
|
2005-02-09 18:18:20 +00:00
|
|
|
*/
|
2007-10-23 09:09:46 +00:00
|
|
|
IExtractIconW* IExtractIconW_Constructor(LPCITEMIDLIST pidl)
|
2005-02-09 18:18:20 +00:00
|
|
|
{
|
2007-10-23 09:09:46 +00:00
|
|
|
IDefaultExtractIconInit *initIcon;
|
|
|
|
IExtractIconW *extractIcon;
|
|
|
|
GUID const * riid;
|
|
|
|
int icon_idx;
|
|
|
|
UINT flags;
|
|
|
|
CHAR sTemp[MAX_PATH];
|
|
|
|
WCHAR wTemp[MAX_PATH];
|
|
|
|
LPITEMIDLIST pSimplePidl = ILFindLastID(pidl);
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
hr = SHCreateDefaultExtractIcon(&IID_IDefaultExtractIconInit, (void **)&initIcon);
|
|
|
|
if (!SUCCEEDED(hr))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
hr = IDefaultExtractIconInit_QueryInterface(initIcon, &IID_IExtractIconW, (void **)&extractIcon);
|
|
|
|
IDefaultExtractIconInit_Release(initIcon);
|
|
|
|
if (!SUCCEEDED(hr))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (_ILIsDesktop(pSimplePidl))
|
|
|
|
{
|
|
|
|
IDefaultExtractIconInit_SetNormalIcon(initIcon, swShell32Name, -IDI_SHELL_DESKTOP);
|
|
|
|
}
|
|
|
|
else if ((riid = _ILGetGUIDPointer(pSimplePidl)))
|
|
|
|
{
|
|
|
|
/* my computer and other shell extensions */
|
|
|
|
static const WCHAR fmt[] = { 'C','L','S','I','D','\\',
|
|
|
|
'{','%','0','8','l','x','-','%','0','4','x','-','%','0','4','x','-',
|
|
|
|
'%','0','2','x','%','0','2','x','-','%','0','2','x', '%','0','2','x',
|
|
|
|
'%','0','2','x','%','0','2','x','%','0','2','x','%','0','2','x','}',0 };
|
|
|
|
WCHAR xriid[50];
|
|
|
|
|
2008-08-26 15:50:23 +00:00
|
|
|
swprintf(xriid, fmt,
|
2007-10-23 09:09:46 +00:00
|
|
|
riid->Data1, riid->Data2, riid->Data3,
|
|
|
|
riid->Data4[0], riid->Data4[1], riid->Data4[2], riid->Data4[3],
|
|
|
|
riid->Data4[4], riid->Data4[5], riid->Data4[6], riid->Data4[7]);
|
|
|
|
|
|
|
|
if (HCR_GetDefaultIconW(xriid, wTemp, MAX_PATH, &icon_idx))
|
|
|
|
{
|
|
|
|
IDefaultExtractIconInit_SetNormalIcon(initIcon, wTemp, icon_idx);
|
|
|
|
}
|
2005-05-05 22:16:20 +00:00
|
|
|
else
|
2007-10-23 09:09:46 +00:00
|
|
|
{
|
|
|
|
if (IsEqualGUID(riid, &CLSID_MyComputer))
|
|
|
|
IDefaultExtractIconInit_SetNormalIcon(initIcon, swShell32Name, -IDI_SHELL_MY_COMPUTER);
|
|
|
|
else if (IsEqualGUID(riid, &CLSID_MyDocuments))
|
|
|
|
IDefaultExtractIconInit_SetNormalIcon(initIcon, swShell32Name, -IDI_SHELL_MY_DOCUMENTS);
|
|
|
|
else if (IsEqualGUID(riid, &CLSID_NetworkPlaces))
|
|
|
|
IDefaultExtractIconInit_SetNormalIcon(initIcon, swShell32Name, -IDI_SHELL_MY_NETWORK_PLACES);
|
|
|
|
else if (IsEqualGUID(riid, &CLSID_UnixFolder) ||
|
|
|
|
IsEqualGUID(riid, &CLSID_UnixDosFolder))
|
|
|
|
IDefaultExtractIconInit_SetNormalIcon(initIcon, swShell32Name, -IDI_SHELL_DRIVE);
|
|
|
|
else
|
|
|
|
IDefaultExtractIconInit_SetNormalIcon(initIcon, swShell32Name, -IDI_SHELL_FOLDER);
|
|
|
|
}
|
|
|
|
}
|
2005-02-09 18:18:20 +00:00
|
|
|
|
2007-10-23 09:09:46 +00:00
|
|
|
else if (_ILIsDrive (pSimplePidl))
|
|
|
|
{
|
|
|
|
static const WCHAR drive[] = { 'D','r','i','v','e',0 };
|
|
|
|
int icon_idx = -1;
|
2005-02-09 18:18:20 +00:00
|
|
|
|
2007-10-23 09:09:46 +00:00
|
|
|
if (_ILGetDrive(pSimplePidl, sTemp, MAX_PATH))
|
|
|
|
{
|
|
|
|
switch(GetDriveTypeA(sTemp))
|
|
|
|
{
|
|
|
|
case DRIVE_REMOVABLE: icon_idx = IDI_SHELL_FLOPPY; break;
|
|
|
|
case DRIVE_CDROM: icon_idx = IDI_SHELL_CDROM; break;
|
|
|
|
case DRIVE_REMOTE: icon_idx = IDI_SHELL_NETDRIVE; break;
|
|
|
|
case DRIVE_RAMDISK: icon_idx = IDI_SHELL_RAMDISK; break;
|
2010-04-26 12:56:32 +00:00
|
|
|
case DRIVE_NO_ROOT_DIR: icon_idx = IDI_SHELL_CDROM; break;
|
2007-10-23 09:09:46 +00:00
|
|
|
}
|
|
|
|
}
|
2005-05-05 22:16:20 +00:00
|
|
|
|
2007-10-23 09:09:46 +00:00
|
|
|
if (icon_idx != -1)
|
|
|
|
{
|
|
|
|
IDefaultExtractIconInit_SetNormalIcon(initIcon, swShell32Name, -icon_idx);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (HCR_GetDefaultIconW(drive, wTemp, MAX_PATH, &icon_idx))
|
|
|
|
IDefaultExtractIconInit_SetNormalIcon(initIcon, wTemp, icon_idx);
|
|
|
|
else
|
|
|
|
IDefaultExtractIconInit_SetNormalIcon(initIcon, swShell32Name, -IDI_SHELL_DRIVE);
|
|
|
|
}
|
|
|
|
}
|
2005-02-09 18:18:20 +00:00
|
|
|
|
2007-10-23 09:09:46 +00:00
|
|
|
else if (_ILIsFolder (pSimplePidl))
|
|
|
|
{
|
|
|
|
if (SUCCEEDED(getIconLocationForFolder(
|
|
|
|
pidl, 0, wTemp, MAX_PATH,
|
|
|
|
&icon_idx,
|
|
|
|
&flags)))
|
|
|
|
{
|
|
|
|
IDefaultExtractIconInit_SetNormalIcon(initIcon, wTemp, icon_idx);
|
|
|
|
}
|
|
|
|
if (SUCCEEDED(getIconLocationForFolder(
|
|
|
|
pidl, GIL_DEFAULTICON, wTemp, MAX_PATH,
|
|
|
|
&icon_idx,
|
|
|
|
&flags)))
|
|
|
|
{
|
|
|
|
IDefaultExtractIconInit_SetDefaultIcon(initIcon, wTemp, icon_idx);
|
|
|
|
}
|
|
|
|
if (SUCCEEDED(getIconLocationForFolder(
|
|
|
|
pidl, GIL_FORSHORTCUT, wTemp, MAX_PATH,
|
|
|
|
&icon_idx,
|
|
|
|
&flags)))
|
|
|
|
{
|
|
|
|
IDefaultExtractIconInit_SetShortcutIcon(initIcon, wTemp, icon_idx);
|
|
|
|
}
|
|
|
|
if (SUCCEEDED(getIconLocationForFolder(
|
|
|
|
pidl, GIL_OPENICON, wTemp, MAX_PATH,
|
|
|
|
&icon_idx,
|
|
|
|
&flags)))
|
|
|
|
{
|
|
|
|
IDefaultExtractIconInit_SetOpenIcon(initIcon, wTemp, icon_idx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
BOOL found = FALSE;
|
2005-02-09 18:18:20 +00:00
|
|
|
|
2007-10-23 09:09:46 +00:00
|
|
|
if (_ILIsCPanelStruct(pSimplePidl))
|
|
|
|
{
|
|
|
|
if (SUCCEEDED(CPanel_GetIconLocationW(pSimplePidl, wTemp, MAX_PATH, &icon_idx)))
|
|
|
|
found = TRUE;
|
|
|
|
}
|
|
|
|
else if (_ILGetExtension(pSimplePidl, sTemp, MAX_PATH))
|
|
|
|
{
|
|
|
|
if (HCR_MapTypeToValueA(sTemp, sTemp, MAX_PATH, TRUE)
|
|
|
|
&& HCR_GetDefaultIconA(sTemp, sTemp, MAX_PATH, &icon_idx))
|
|
|
|
{
|
|
|
|
if (!lstrcmpA("%1", sTemp)) /* icon is in the file */
|
|
|
|
{
|
|
|
|
SHGetPathFromIDListW(pidl, wTemp);
|
|
|
|
icon_idx = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, sTemp, -1, wTemp, MAX_PATH);
|
|
|
|
}
|
|
|
|
|
|
|
|
found = TRUE;
|
|
|
|
}
|
|
|
|
else if (!lstrcmpiA(sTemp, "lnkfile"))
|
|
|
|
{
|
|
|
|
/* extract icon from shell shortcut */
|
|
|
|
IShellFolder* dsf;
|
|
|
|
IShellLinkW* psl;
|
|
|
|
|
|
|
|
if (SUCCEEDED(SHGetDesktopFolder(&dsf)))
|
|
|
|
{
|
|
|
|
HRESULT hr = IShellFolder_GetUIObjectOf(dsf, NULL, 1, (LPCITEMIDLIST*)&pidl, &IID_IShellLinkW, NULL, (LPVOID*)&psl);
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
hr = IShellLinkW_GetIconLocation(psl, wTemp, MAX_PATH, &icon_idx);
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr) && *sTemp)
|
|
|
|
found = TRUE;
|
|
|
|
|
|
|
|
IShellLinkW_Release(psl);
|
|
|
|
}
|
|
|
|
|
|
|
|
IShellFolder_Release(dsf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-02-09 18:18:20 +00:00
|
|
|
|
2007-10-23 09:09:46 +00:00
|
|
|
if (!found)
|
|
|
|
/* default icon */
|
|
|
|
IDefaultExtractIconInit_SetNormalIcon(initIcon, swShell32Name, 0);
|
|
|
|
else
|
|
|
|
IDefaultExtractIconInit_SetNormalIcon(initIcon, wTemp, icon_idx);
|
|
|
|
}
|
2005-02-09 18:18:20 +00:00
|
|
|
|
2007-10-23 09:09:46 +00:00
|
|
|
return extractIcon;
|
|
|
|
}
|
2005-02-09 18:18:20 +00:00
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* IExtractIconA_Constructor
|
|
|
|
*/
|
|
|
|
IExtractIconA* IExtractIconA_Constructor(LPCITEMIDLIST pidl)
|
|
|
|
{
|
2007-10-23 09:09:46 +00:00
|
|
|
IExtractIconW *extractIconW;
|
|
|
|
IExtractIconA *extractIconA;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
extractIconW = IExtractIconW_Constructor(pidl);
|
|
|
|
if (!extractIconW)
|
|
|
|
return NULL;
|
2008-08-26 15:50:23 +00:00
|
|
|
|
|
|
|
hr = extractIconW->lpVtbl->QueryInterface(extractIconW, &IID_IExtractIconA, (void **)&extractIconA);
|
|
|
|
extractIconW->lpVtbl->Release(extractIconW);
|
2007-10-23 09:09:46 +00:00
|
|
|
if (!SUCCEEDED(hr))
|
|
|
|
return NULL;
|
|
|
|
return extractIconA;
|
2005-02-09 18:18:20 +00:00
|
|
|
}
|