Better EXE version check in VERSION_GetLinkedDllVersion.
[wine/gsoc_dplay.git] / dlls / shell32 / folders.c
blob7aa2e7485d53c8374fc60aaef493dc9fed2b6e64
1 /*
2 * Copyright 1997 Marcus Meissner
3 * Copyright 1998 Juergen Schmied
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #include "config.h"
21 #include "wine/port.h"
23 #include <stdlib.h>
24 #include <stdarg.h>
25 #include <stdio.h>
26 #include <string.h>
28 #define COBJMACROS
30 #include "windef.h"
31 #include "winbase.h"
32 #include "winerror.h"
33 #include "objbase.h"
34 #include "undocshell.h"
35 #include "shlguid.h"
36 #include "winreg.h"
38 #include "wine/debug.h"
40 #include "pidl.h"
41 #include "shell32_main.h"
42 #include "shfldr.h"
44 WINE_DEFAULT_DEBUG_CHANNEL(shell);
46 /***********************************************************************
47 * IExtractIconW implementation
49 typedef struct
51 IExtractIconWVtbl *lpVtbl;
52 DWORD ref;
53 IPersistFileVtbl *lpvtblPersistFile;
54 IExtractIconAVtbl *lpvtblExtractIconA;
55 LPITEMIDLIST pidl;
56 } IExtractIconWImpl;
58 static struct IExtractIconAVtbl eiavt;
59 static struct IExtractIconWVtbl eivt;
60 static struct IPersistFileVtbl pfvt;
62 #define _IPersistFile_Offset ((int)(&(((IExtractIconWImpl*)0)->lpvtblPersistFile)))
63 #define _ICOM_THIS_From_IPersistFile(class, name) class* This = (class*)(((char*)name)-_IPersistFile_Offset);
65 #define _IExtractIconA_Offset ((int)(&(((IExtractIconWImpl*)0)->lpvtblExtractIconA)))
66 #define _ICOM_THIS_From_IExtractIconA(class, name) class* This = (class*)(((char*)name)-_IExtractIconA_Offset);
68 /**************************************************************************
69 * IExtractIconW_Constructor
71 IExtractIconW* IExtractIconW_Constructor(LPCITEMIDLIST pidl)
73 IExtractIconWImpl* ei;
75 TRACE("%p\n", pidl);
77 ei = (IExtractIconWImpl*)HeapAlloc(GetProcessHeap(),0,sizeof(IExtractIconWImpl));
78 ei->ref=1;
79 ei->lpVtbl = &eivt;
80 ei->lpvtblPersistFile = &pfvt;
81 ei->lpvtblExtractIconA = &eiavt;
82 ei->pidl=ILClone(pidl);
84 pdump(pidl);
86 TRACE("(%p)\n", ei);
87 return (IExtractIconW *)ei;
89 /**************************************************************************
90 * IExtractIconW_QueryInterface
92 static HRESULT WINAPI IExtractIconW_fnQueryInterface(IExtractIconW *iface, REFIID riid, LPVOID *ppvObj)
94 IExtractIconWImpl *This = (IExtractIconWImpl *)iface;
96 TRACE("(%p)->(\n\tIID:\t%s,%p)\n", This, debugstr_guid(riid), ppvObj);
98 *ppvObj = NULL;
100 if (IsEqualIID(riid, &IID_IUnknown)) /*IUnknown*/
102 *ppvObj = This;
104 else if (IsEqualIID(riid, &IID_IPersistFile)) /*IExtractIcon*/
106 *ppvObj = (IPersistFile*)&(This->lpvtblPersistFile);
108 else if (IsEqualIID(riid, &IID_IExtractIconA)) /*IExtractIcon*/
110 *ppvObj = (IExtractIconA*)&(This->lpvtblExtractIconA);
112 else if (IsEqualIID(riid, &IID_IExtractIconW)) /*IExtractIcon*/
114 *ppvObj = (IExtractIconW*)This;
117 if(*ppvObj)
119 IExtractIconW_AddRef((IExtractIconW*) *ppvObj);
120 TRACE("-- Interface: (%p)->(%p)\n",ppvObj,*ppvObj);
121 return S_OK;
123 TRACE("-- Interface: E_NOINTERFACE\n");
124 return E_NOINTERFACE;
127 /**************************************************************************
128 * IExtractIconW_AddRef
130 static ULONG WINAPI IExtractIconW_fnAddRef(IExtractIconW * iface)
132 IExtractIconWImpl *This = (IExtractIconWImpl *)iface;
134 TRACE("(%p)->(count=%lu)\n",This, This->ref );
136 return ++(This->ref);
138 /**************************************************************************
139 * IExtractIconW_Release
141 static ULONG WINAPI IExtractIconW_fnRelease(IExtractIconW * iface)
143 IExtractIconWImpl *This = (IExtractIconWImpl *)iface;
145 TRACE("(%p)->()\n",This);
147 if (!--(This->ref))
149 TRACE(" destroying IExtractIcon(%p)\n",This);
150 SHFree(This->pidl);
151 HeapFree(GetProcessHeap(),0,This);
152 return 0;
154 return This->ref;
157 static HRESULT getIconLocationForFolder(IExtractIconW *iface, UINT uFlags,
158 LPWSTR szIconFile, UINT cchMax, int *piIndex, UINT *pwFlags)
160 IExtractIconWImpl *This = (IExtractIconWImpl *)iface;
161 DWORD dwNr;
162 WCHAR wszPath[MAX_PATH];
163 WCHAR wszCLSIDValue[CHARS_IN_GUID];
164 static const WCHAR shellClassInfo[] = { '.','S','h','e','l','l','C','l','a','s','s','I','n','f','o',0 };
165 static const WCHAR iconFile[] = { 'I','c','o','n','F','i','l','e',0 };
166 static const WCHAR clsid[] = { 'C','L','S','I','D',0 };
167 static const WCHAR clsid2[] = { 'C','L','S','I','D','2',0 };
168 static const WCHAR iconIndex[] = { 'I','c','o','n','I','n','d','e','x',0 };
170 if (SHELL32_GetCustomFolderAttribute(This->pidl, shellClassInfo, iconFile,
171 wszPath, MAX_PATH))
173 WCHAR wszIconIndex[10];
174 SHELL32_GetCustomFolderAttribute(This->pidl, shellClassInfo, iconIndex,
175 wszIconIndex, 10);
176 *piIndex = atoiW(wszIconIndex);
178 else if (SHELL32_GetCustomFolderAttribute(This->pidl, shellClassInfo, clsid,
179 wszCLSIDValue, CHARS_IN_GUID) &&
180 HCR_GetDefaultIconW(wszCLSIDValue, szIconFile, cchMax, &dwNr))
182 *piIndex = dwNr;
184 else if (SHELL32_GetCustomFolderAttribute(This->pidl, shellClassInfo, clsid2,
185 wszCLSIDValue, CHARS_IN_GUID) &&
186 HCR_GetDefaultIconW(wszCLSIDValue, szIconFile, cchMax, &dwNr))
188 *piIndex = dwNr;
190 else
192 static const WCHAR folder[] = { 'F','o','l','d','e','r',0 };
194 if (!HCR_GetDefaultIconW(folder, szIconFile, cchMax, &dwNr))
196 lstrcpynW(szIconFile, swShell32Name, cchMax);
197 dwNr = 3;
199 *piIndex = (uFlags & GIL_OPENICON) ? dwNr + 1 : dwNr;
201 return S_OK;
204 WCHAR swShell32Name[MAX_PATH];
206 /**************************************************************************
207 * IExtractIconW_GetIconLocation
209 * mapping filetype to icon
211 static HRESULT WINAPI IExtractIconW_fnGetIconLocation(
212 IExtractIconW * iface,
213 UINT uFlags, /* GIL_ flags */
214 LPWSTR szIconFile,
215 UINT cchMax,
216 int * piIndex,
217 UINT * pwFlags) /* returned GIL_ flags */
219 IExtractIconWImpl *This = (IExtractIconWImpl *)iface;
221 char sTemp[MAX_PATH];
222 DWORD dwNr;
223 GUID const * riid;
224 LPITEMIDLIST pSimplePidl = ILFindLastID(This->pidl);
226 TRACE("(%p) (flags=%u %p %u %p %p)\n", This, uFlags, szIconFile, cchMax, piIndex, pwFlags);
228 if (pwFlags)
229 *pwFlags = 0;
231 if (_ILIsDesktop(pSimplePidl))
233 lstrcpynW(szIconFile, swShell32Name, cchMax);
234 *piIndex = 34;
237 /* my computer and other shell extensions */
238 else if ((riid = _ILGetGUIDPointer(pSimplePidl)))
240 static const WCHAR fmt[] = { 'C','L','S','I','D','\\',
241 '{','%','0','8','l','x','-','%','0','4','x','-','%','0','4','x','-',
242 '%','0','2','x','%','0','2','x','-','%','0','2','x', '%','0','2','x',
243 '%','0','2','x','%','0','2','x','%','0','2','x','%','0','2','x','}',0 };
244 WCHAR xriid[50];
246 sprintfW(xriid, fmt,
247 riid->Data1, riid->Data2, riid->Data3,
248 riid->Data4[0], riid->Data4[1], riid->Data4[2], riid->Data4[3],
249 riid->Data4[4], riid->Data4[5], riid->Data4[6], riid->Data4[7]);
251 if (HCR_GetDefaultIconW(xriid, szIconFile, cchMax, &dwNr))
253 *piIndex = dwNr;
255 else
257 lstrcpynW(szIconFile, swShell32Name, cchMax);
258 *piIndex = 15;
262 else if (_ILIsDrive (pSimplePidl))
264 static const WCHAR drive[] = { 'D','r','i','v','e',0 };
266 int icon_idx = -1;
268 if (_ILGetDrive(pSimplePidl, sTemp, MAX_PATH))
270 switch(GetDriveTypeA(sTemp))
272 case DRIVE_REMOVABLE: icon_idx = 5; break;
273 case DRIVE_CDROM: icon_idx = 11; break;
274 case DRIVE_REMOTE: icon_idx = 9; break;
275 case DRIVE_RAMDISK: icon_idx = 12; break;
279 if (icon_idx != -1)
281 lstrcpynW(szIconFile, swShell32Name, cchMax);
282 *piIndex = icon_idx;
284 else
286 if (HCR_GetDefaultIconW(drive, szIconFile, cchMax, &dwNr))
288 *piIndex = dwNr;
290 else
292 lstrcpynW(szIconFile, swShell32Name, cchMax);
293 *piIndex = 8;
297 else if (_ILIsFolder (pSimplePidl))
299 getIconLocationForFolder(iface, uFlags, szIconFile, cchMax, piIndex,
300 pwFlags);
302 else
304 BOOL found = FALSE;
306 if (_ILIsCPanelStruct(pSimplePidl))
308 if (SUCCEEDED(CPanel_GetIconLocationW(pSimplePidl, szIconFile, cchMax, piIndex)))
309 found = TRUE;
311 else if (_ILGetExtension(pSimplePidl, sTemp, MAX_PATH))
313 if (HCR_MapTypeToValueA(sTemp, sTemp, MAX_PATH, TRUE)
314 && HCR_GetDefaultIconA(sTemp, sTemp, MAX_PATH, &dwNr))
316 if (!lstrcmpA("%1", sTemp)) /* icon is in the file */
318 SHGetPathFromIDListW(This->pidl, szIconFile);
319 *piIndex = 0;
321 else
323 MultiByteToWideChar(CP_ACP, 0, sTemp, -1, szIconFile, cchMax);
324 *piIndex = dwNr;
327 found = TRUE;
329 else if (!strcasecmp(sTemp, "lnkfile"))
331 /* extract icon from shell shortcut */
332 IShellFolder* dsf;
333 IShellLinkW* psl;
335 if (SUCCEEDED(SHGetDesktopFolder(&dsf)))
337 HRESULT hr = IShellFolder_GetUIObjectOf(dsf, NULL, 1, (LPCITEMIDLIST*)&This->pidl, &IID_IShellLinkW, NULL, (LPVOID*)&psl);
339 if (SUCCEEDED(hr))
341 hr = IShellLinkW_GetIconLocation(psl, szIconFile, MAX_PATH, piIndex);
343 if (SUCCEEDED(hr) && *szIconFile)
344 found = TRUE;
346 IShellLinkW_Release(psl);
349 IShellFolder_Release(dsf);
354 if (!found) /* default icon */
356 lstrcpynW(szIconFile, swShell32Name, cchMax);
357 *piIndex = 0;
361 TRACE("-- %s %x\n", debugstr_w(szIconFile), *piIndex);
362 return NOERROR;
365 /**************************************************************************
366 * IExtractIconW_Extract
368 static HRESULT WINAPI IExtractIconW_fnExtract(IExtractIconW * iface, LPCWSTR pszFile, UINT nIconIndex, HICON *phiconLarge, HICON *phiconSmall, UINT nIconSize)
370 IExtractIconWImpl *This = (IExtractIconWImpl *)iface;
372 FIXME("(%p) (file=%p index=%u %p %p size=%u) semi-stub\n", This, debugstr_w(pszFile), nIconIndex, phiconLarge, phiconSmall, nIconSize);
374 if (phiconLarge)
375 *phiconLarge = ImageList_GetIcon(ShellBigIconList, nIconIndex, ILD_TRANSPARENT);
377 if (phiconSmall)
378 *phiconSmall = ImageList_GetIcon(ShellSmallIconList, nIconIndex, ILD_TRANSPARENT);
380 return S_OK;
383 static struct IExtractIconWVtbl eivt =
385 IExtractIconW_fnQueryInterface,
386 IExtractIconW_fnAddRef,
387 IExtractIconW_fnRelease,
388 IExtractIconW_fnGetIconLocation,
389 IExtractIconW_fnExtract
392 /**************************************************************************
393 * IExtractIconA_Constructor
395 IExtractIconA* IExtractIconA_Constructor(LPCITEMIDLIST pidl)
397 IExtractIconWImpl *This = (IExtractIconWImpl *)IExtractIconW_Constructor(pidl);
398 IExtractIconA *eia = (IExtractIconA *)&This->lpvtblExtractIconA;
400 TRACE("(%p)->(%p)\n", This, eia);
401 return eia;
403 /**************************************************************************
404 * IExtractIconA_QueryInterface
406 static HRESULT WINAPI IExtractIconA_fnQueryInterface(IExtractIconA * iface, REFIID riid, LPVOID *ppvObj)
408 _ICOM_THIS_From_IExtractIconA(IExtractIconW, iface);
410 return IExtractIconW_QueryInterface(This, riid, ppvObj);
413 /**************************************************************************
414 * IExtractIconA_AddRef
416 static ULONG WINAPI IExtractIconA_fnAddRef(IExtractIconA * iface)
418 _ICOM_THIS_From_IExtractIconA(IExtractIconW, iface);
420 return IExtractIconW_AddRef(This);
422 /**************************************************************************
423 * IExtractIconA_Release
425 static ULONG WINAPI IExtractIconA_fnRelease(IExtractIconA * iface)
427 _ICOM_THIS_From_IExtractIconA(IExtractIconW, iface);
429 return IExtractIconW_AddRef(This);
431 /**************************************************************************
432 * IExtractIconA_GetIconLocation
434 * mapping filetype to icon
436 static HRESULT WINAPI IExtractIconA_fnGetIconLocation(
437 IExtractIconA * iface,
438 UINT uFlags,
439 LPSTR szIconFile,
440 UINT cchMax,
441 int * piIndex,
442 UINT * pwFlags)
444 HRESULT ret;
445 LPWSTR lpwstrFile = HeapAlloc(GetProcessHeap(), 0, cchMax * sizeof(WCHAR));
446 _ICOM_THIS_From_IExtractIconA(IExtractIconW, iface);
448 TRACE("(%p) (flags=%u %p %u %p %p)\n", This, uFlags, szIconFile, cchMax, piIndex, pwFlags);
450 ret = IExtractIconW_GetIconLocation(This, uFlags, lpwstrFile, cchMax, piIndex, pwFlags);
451 WideCharToMultiByte(CP_ACP, 0, lpwstrFile, -1, szIconFile, cchMax, NULL, NULL);
452 HeapFree(GetProcessHeap(), 0, lpwstrFile);
454 TRACE("-- %s %x\n", szIconFile, *piIndex);
455 return ret;
457 /**************************************************************************
458 * IExtractIconA_Extract
460 static HRESULT WINAPI IExtractIconA_fnExtract(IExtractIconA * iface, LPCSTR pszFile, UINT nIconIndex, HICON *phiconLarge, HICON *phiconSmall, UINT nIconSize)
462 HRESULT ret;
463 INT len = MultiByteToWideChar(CP_ACP, 0, pszFile, -1, NULL, 0);
464 LPWSTR lpwstrFile = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
465 _ICOM_THIS_From_IExtractIconA(IExtractIconW, iface);
467 TRACE("(%p) (file=%p index=%u %p %p size=%u)\n", This, pszFile, nIconIndex, phiconLarge, phiconSmall, nIconSize);
469 MultiByteToWideChar(CP_ACP, 0, pszFile, -1, lpwstrFile, len);
470 ret = IExtractIconW_Extract(This, lpwstrFile, nIconIndex, phiconLarge, phiconSmall, nIconSize);
471 HeapFree(GetProcessHeap(), 0, lpwstrFile);
472 return ret;
475 static struct IExtractIconAVtbl eiavt =
477 IExtractIconA_fnQueryInterface,
478 IExtractIconA_fnAddRef,
479 IExtractIconA_fnRelease,
480 IExtractIconA_fnGetIconLocation,
481 IExtractIconA_fnExtract
484 /************************************************************************
485 * IEIPersistFile_QueryInterface (IUnknown)
487 static HRESULT WINAPI IEIPersistFile_fnQueryInterface(
488 IPersistFile *iface,
489 REFIID iid,
490 LPVOID *ppvObj)
492 _ICOM_THIS_From_IPersistFile(IExtractIconW, iface);
494 return IExtractIconW_QueryInterface(This, iid, ppvObj);
497 /************************************************************************
498 * IEIPersistFile_AddRef (IUnknown)
500 static ULONG WINAPI IEIPersistFile_fnAddRef(
501 IPersistFile *iface)
503 _ICOM_THIS_From_IPersistFile(IExtractIconW, iface);
505 return IExtractIconW_AddRef(This);
508 /************************************************************************
509 * IEIPersistFile_Release (IUnknown)
511 static ULONG WINAPI IEIPersistFile_fnRelease(
512 IPersistFile *iface)
514 _ICOM_THIS_From_IPersistFile(IExtractIconW, iface);
516 return IExtractIconW_Release(This);
519 /************************************************************************
520 * IEIPersistFile_GetClassID (IPersist)
522 static HRESULT WINAPI IEIPersistFile_fnGetClassID(
523 IPersistFile *iface,
524 LPCLSID lpClassId)
526 CLSID StdFolderID = { 0x00000000, 0x0000, 0x0000, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00} };
528 if (lpClassId==NULL)
529 return E_POINTER;
531 memcpy(lpClassId, &StdFolderID, sizeof(StdFolderID));
533 return S_OK;
536 /************************************************************************
537 * IEIPersistFile_Load (IPersistFile)
539 static HRESULT WINAPI IEIPersistFile_fnLoad(IPersistFile* iface, LPCOLESTR pszFileName, DWORD dwMode)
541 _ICOM_THIS_From_IPersistFile(IExtractIconW, iface);
542 FIXME("%p\n", This);
543 return E_NOTIMPL;
547 static struct IPersistFileVtbl pfvt =
549 IEIPersistFile_fnQueryInterface,
550 IEIPersistFile_fnAddRef,
551 IEIPersistFile_fnRelease,
552 IEIPersistFile_fnGetClassID,
553 (void *) 0xdeadbeef /* IEIPersistFile_fnIsDirty */,
554 IEIPersistFile_fnLoad,
555 (void *) 0xdeadbeef /* IEIPersistFile_fnSave */,
556 (void *) 0xdeadbeef /* IEIPersistFile_fnSaveCompleted */,
557 (void *) 0xdeadbeef /* IEIPersistFile_fnGetCurFile */