shell32: Some debug tracing improvements.
[wine] / dlls / shell32 / shlfolder.c
1 /*
2  *      Shell Folder stuff
3  *
4  *      Copyright 1997                  Marcus Meissner
5  *      Copyright 1998, 1999, 2002      Juergen Schmied
6  *
7  *      IShellFolder2 and related interfaces
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22  */
23
24 #include "config.h"
25 #include "wine/port.h"
26
27 #include <stdlib.h>
28 #include <string.h>
29 #include <stdarg.h>
30 #include <stdio.h>
31
32 #define COBJMACROS
33
34 #include "winerror.h"
35 #include "windef.h"
36 #include "winbase.h"
37 #include "winreg.h"
38 #include "wingdi.h"
39 #include "winuser.h"
40
41 #include "ole2.h"
42 #include "shlguid.h"
43
44 #include "pidl.h"
45 #include "undocshell.h"
46 #include "shell32_main.h"
47 #include "shlwapi.h"
48 #include "wine/debug.h"
49 #include "shfldr.h"
50
51 WINE_DEFAULT_DEBUG_CHANNEL (shell);
52
53 static const WCHAR wszDotShellClassInfo[] = {
54     '.','S','h','e','l','l','C','l','a','s','s','I','n','f','o',0};
55
56 /***************************************************************************
57  *  SHELL32_GetCustomFolderAttribute (internal function)
58  *
59  * Gets a value from the folder's desktop.ini file, if one exists.
60  *
61  * PARAMETERS
62  *  pidl          [I] Folder containing the desktop.ini file.
63  *  pwszHeading   [I] Heading in .ini file.
64  *  pwszAttribute [I] Attribute in .ini file.
65  *  pwszValue     [O] Buffer to store value into.
66  *  cchValue      [I] Size in characters including NULL of buffer pointed to
67  *                    by pwszValue.
68  *
69  *  RETURNS
70  *    TRUE if returned non-NULL value.
71  *    FALSE otherwise.
72  */
73 static inline BOOL SHELL32_GetCustomFolderAttributeFromPath(
74     LPWSTR pwszFolderPath, LPCWSTR pwszHeading, LPCWSTR pwszAttribute,
75     LPWSTR pwszValue, DWORD cchValue)
76 {
77     static const WCHAR wszDesktopIni[] =
78             {'d','e','s','k','t','o','p','.','i','n','i',0};
79     static const WCHAR wszDefault[] = {0};
80
81     PathAddBackslashW(pwszFolderPath);
82     PathAppendW(pwszFolderPath, wszDesktopIni);
83     return GetPrivateProfileStringW(pwszHeading, pwszAttribute, wszDefault, 
84                                     pwszValue, cchValue, pwszFolderPath);
85 }
86
87 BOOL SHELL32_GetCustomFolderAttribute(
88     LPCITEMIDLIST pidl, LPCWSTR pwszHeading, LPCWSTR pwszAttribute,
89     LPWSTR pwszValue, DWORD cchValue)
90 {
91     DWORD dwAttrib = FILE_ATTRIBUTE_SYSTEM;
92     WCHAR wszFolderPath[MAX_PATH];
93
94     /* Hack around not having system attribute on non-Windows file systems */
95     if (0)
96         dwAttrib = _ILGetFileAttributes(pidl, NULL, 0);
97
98     if (dwAttrib & FILE_ATTRIBUTE_SYSTEM)
99     {
100         if (!SHGetPathFromIDListW(pidl, wszFolderPath))
101             return FALSE;
102
103         return SHELL32_GetCustomFolderAttributeFromPath(wszFolderPath, pwszHeading, 
104                                                 pwszAttribute, pwszValue, cchValue);
105     }
106     return FALSE;
107 }
108
109 /***************************************************************************
110  *  GetNextElement (internal function)
111  *
112  * Gets a part of a string till the first backslash.
113  *
114  * PARAMETERS
115  *  pszNext [IN] string to get the element from
116  *  pszOut  [IN] pointer to buffer which receives string
117  *  dwOut   [IN] length of pszOut
118  *
119  *  RETURNS
120  *    LPSTR pointer to first, not yet parsed char
121  */
122
123 LPCWSTR GetNextElementW (LPCWSTR pszNext, LPWSTR pszOut, DWORD dwOut)
124 {
125     LPCWSTR pszTail = pszNext;
126     DWORD dwCopy;
127
128     TRACE ("(%s %p 0x%08x)\n", debugstr_w(pszNext), pszOut, dwOut);
129
130     *pszOut = 0;
131
132     if (!pszNext || !*pszNext)
133         return NULL;
134
135     while (*pszTail && (*pszTail != (WCHAR) '\\'))
136         pszTail++;
137
138     dwCopy = pszTail - pszNext + 1;
139     lstrcpynW (pszOut, pszNext, (dwOut < dwCopy) ? dwOut : dwCopy);
140
141     if (*pszTail)
142         pszTail++;
143     else
144         pszTail = NULL;
145
146     TRACE ("--(%s %s 0x%08x %p)\n", debugstr_w (pszNext), debugstr_w (pszOut), dwOut, pszTail);
147     return pszTail;
148 }
149
150 HRESULT SHELL32_ParseNextElement (IShellFolder2 * psf, HWND hwndOwner, LPBC pbc,
151                                   LPITEMIDLIST * pidlInOut, LPOLESTR szNext, DWORD * pEaten, DWORD * pdwAttributes)
152 {
153     LPITEMIDLIST pidlOut = NULL, pidlTemp = NULL;
154     IShellFolder *psfChild;
155     HRESULT hr;
156
157     TRACE ("(%p, %p, %p, %s)\n", psf, pbc, pidlInOut ? *pidlInOut : NULL, debugstr_w (szNext));
158
159     /* get the shellfolder for the child pidl and let it analyse further */
160     hr = IShellFolder_BindToObject (psf, *pidlInOut, pbc, &IID_IShellFolder, (LPVOID *) & psfChild);
161
162     if (SUCCEEDED(hr)) {
163         hr = IShellFolder_ParseDisplayName (psfChild, hwndOwner, pbc, szNext, pEaten, &pidlOut, pdwAttributes);
164         IShellFolder_Release (psfChild);
165
166         if (SUCCEEDED(hr)) {
167             pidlTemp = ILCombine (*pidlInOut, pidlOut);
168
169             if (!pidlTemp)
170                 hr = E_OUTOFMEMORY;
171         }
172
173         if (pidlOut)
174             ILFree (pidlOut);
175     }
176
177     ILFree (*pidlInOut);
178     *pidlInOut = pidlTemp;
179
180     TRACE ("-- pidl=%p ret=0x%08x\n", pidlInOut ? *pidlInOut : NULL, hr);
181     return hr;
182 }
183
184 /***********************************************************************
185  *      SHELL32_CoCreateInitSF
186  *
187  * Creates a shell folder and initializes it with a pidl and a root folder
188  * via IPersistFolder3 or IPersistFolder.
189  *
190  * NOTES
191  *   pathRoot can be NULL for Folders being a drive.
192  *   In this case the absolute path is built from pidlChild (eg. C:)
193  */
194 static HRESULT SHELL32_CoCreateInitSF (LPCITEMIDLIST pidlRoot, LPCWSTR pathRoot,
195                 LPCITEMIDLIST pidlChild, REFCLSID clsid, LPVOID * ppvOut)
196 {
197     HRESULT hr;
198
199     TRACE ("(%p %s %p %s %p)\n", pidlRoot, debugstr_w(pathRoot), pidlChild, debugstr_guid(clsid), ppvOut);
200
201     hr = SHCoCreateInstance(NULL, clsid, NULL, &IID_IShellFolder, ppvOut);
202     if (SUCCEEDED (hr))
203     {
204         LPITEMIDLIST pidlAbsolute = ILCombine (pidlRoot, pidlChild);
205         IPersistFolder *pPF;
206         IPersistFolder3 *ppf;
207
208         if (_ILIsFolder(pidlChild) &&
209             SUCCEEDED (IUnknown_QueryInterface ((IUnknown *) * ppvOut, &IID_IPersistFolder3, (LPVOID *) & ppf))) 
210         {
211             PERSIST_FOLDER_TARGET_INFO ppfti;
212
213             ZeroMemory (&ppfti, sizeof (ppfti));
214
215             /* fill the PERSIST_FOLDER_TARGET_INFO */
216             ppfti.dwAttributes = -1;
217             ppfti.csidl = -1;
218
219             /* build path */
220             if (pathRoot) {
221                 lstrcpynW (ppfti.szTargetParsingName, pathRoot, MAX_PATH - 1);
222                 PathAddBackslashW(ppfti.szTargetParsingName); /* FIXME: why have drives a backslash here ? */
223             }
224
225             if (pidlChild) {
226                 int len = lstrlenW(ppfti.szTargetParsingName);
227
228                 if (!_ILSimpleGetTextW(pidlChild, ppfti.szTargetParsingName + len, MAX_PATH - len))
229                         hr = E_INVALIDARG;
230             }
231
232             IPersistFolder3_InitializeEx (ppf, NULL, pidlAbsolute, &ppfti);
233             IPersistFolder3_Release (ppf);
234         }
235         else if (SUCCEEDED ((hr = IUnknown_QueryInterface ((IUnknown *) * ppvOut, &IID_IPersistFolder, (LPVOID *) & pPF)))) {
236             IPersistFolder_Initialize (pPF, pidlAbsolute);
237             IPersistFolder_Release (pPF);
238         }
239         ILFree (pidlAbsolute);
240     }
241     TRACE ("-- (%p) ret=0x%08x\n", *ppvOut, hr);
242     return hr;
243 }
244
245 /***********************************************************************
246  *      SHELL32_BindToChild [Internal]
247  *
248  * Common code for IShellFolder_BindToObject.
249  * 
250  * PARAMS
251  *  pidlRoot     [I] The parent shell folder's absolute pidl.
252  *  pathRoot     [I] Absolute dos path of the parent shell folder.
253  *  pidlComplete [I] PIDL of the child. Relative to pidlRoot.
254  *  riid         [I] GUID of the interface, which ppvOut shall be bound to.
255  *  ppvOut       [O] A reference to the child's interface (riid).
256  *
257  * NOTES
258  *  pidlComplete has to contain at least one non empty SHITEMID.
259  *  This function makes special assumptions on the shell namespace, which
260  *  means you probably can't use it for your IShellFolder implementation.
261  */
262 HRESULT SHELL32_BindToChild (LPCITEMIDLIST pidlRoot,
263                              LPCWSTR pathRoot, LPCITEMIDLIST pidlComplete, REFIID riid, LPVOID * ppvOut)
264 {
265     GUID const *clsid;
266     IShellFolder *pSF;
267     HRESULT hr;
268     LPITEMIDLIST pidlChild;
269
270     TRACE("(%p %s %p %s %p)\n", pidlRoot, debugstr_w(pathRoot), pidlComplete, debugstr_guid(riid), ppvOut);
271
272     if (!pidlRoot || !ppvOut || !pidlComplete || !pidlComplete->mkid.cb)
273         return E_INVALIDARG;
274
275     *ppvOut = NULL;
276
277     pidlChild = ILCloneFirst (pidlComplete);
278
279     if ((clsid = _ILGetGUIDPointer (pidlChild))) {
280         /* virtual folder */
281         hr = SHELL32_CoCreateInitSF (pidlRoot, pathRoot, pidlChild, clsid, (LPVOID *)&pSF);
282     } else {
283         /* file system folder */
284         CLSID clsidFolder = CLSID_ShellFSFolder;
285         static const WCHAR wszCLSID[] = {'C','L','S','I','D',0};
286         WCHAR wszCLSIDValue[CHARS_IN_GUID], wszFolderPath[MAX_PATH], *pwszPathTail = wszFolderPath;
287        
288         /* see if folder CLSID should be overridden by desktop.ini file */
289         if (pathRoot) {
290             lstrcpynW(wszFolderPath, pathRoot, MAX_PATH);
291             pwszPathTail = PathAddBackslashW(wszFolderPath);
292         }
293
294         _ILSimpleGetTextW(pidlChild,pwszPathTail,MAX_PATH - (int)(pwszPathTail - wszFolderPath));
295
296         if (SHELL32_GetCustomFolderAttributeFromPath (wszFolderPath,
297             wszDotShellClassInfo, wszCLSID, wszCLSIDValue, CHARS_IN_GUID))
298             CLSIDFromString (wszCLSIDValue, &clsidFolder);
299
300         hr = SHELL32_CoCreateInitSF (pidlRoot, pathRoot, pidlChild,
301                                      &clsidFolder, (LPVOID *)&pSF);
302     }
303     ILFree (pidlChild);
304
305     if (SUCCEEDED (hr)) {
306         if (_ILIsPidlSimple (pidlComplete)) {
307             /* no sub folders */
308             hr = IShellFolder_QueryInterface (pSF, riid, ppvOut);
309         } else {
310             /* go deeper */
311             hr = IShellFolder_BindToObject (pSF, ILGetNext (pidlComplete), NULL, riid, ppvOut);
312         }
313         IShellFolder_Release (pSF);
314     }
315
316     TRACE ("-- returning (%p) 0x%08x\n", *ppvOut, hr);
317
318     return hr;
319 }
320
321 /***********************************************************************
322  *      SHELL32_GetDisplayNameOfChild
323  *
324  * Retrieves the display name of a child object of a shellfolder.
325  *
326  * For a pidl eg. [subpidl1][subpidl2][subpidl3]:
327  * - it binds to the child shellfolder [subpidl1]
328  * - asks it for the displayname of [subpidl2][subpidl3]
329  *
330  * Is possible the pidl is a simple pidl. In this case it asks the
331  * subfolder for the displayname of an empty pidl. The subfolder
332  * returns the own displayname eg. "::{guid}". This is used for
333  * virtual folders with the registry key WantsFORPARSING set.
334  */
335 HRESULT SHELL32_GetDisplayNameOfChild (IShellFolder2 * psf,
336                                        LPCITEMIDLIST pidl, DWORD dwFlags, LPWSTR szOut, DWORD dwOutLen)
337 {
338     LPITEMIDLIST pidlFirst;
339     HRESULT hr;
340
341     TRACE ("(%p)->(pidl=%p 0x%08x %p 0x%08x)\n", psf, pidl, dwFlags, szOut, dwOutLen);
342     pdump (pidl);
343
344     pidlFirst = ILCloneFirst (pidl);
345     if (pidlFirst) {
346         IShellFolder2 *psfChild;
347
348         hr = IShellFolder_BindToObject (psf, pidlFirst, NULL, &IID_IShellFolder, (LPVOID *) & psfChild);
349         if (SUCCEEDED (hr)) {
350             STRRET strTemp;
351             LPITEMIDLIST pidlNext = ILGetNext (pidl);
352
353             hr = IShellFolder_GetDisplayNameOf (psfChild, pidlNext, dwFlags, &strTemp);
354             if (SUCCEEDED (hr)) {
355                 if(!StrRetToStrNW (szOut, dwOutLen, &strTemp, pidlNext))
356                     hr = E_FAIL;
357             }
358             IShellFolder_Release (psfChild);
359         }
360         ILFree (pidlFirst);
361     } else
362         hr = E_OUTOFMEMORY;
363
364     TRACE ("-- ret=0x%08x %s\n", hr, debugstr_w(szOut));
365
366     return hr;
367 }
368
369 /***********************************************************************
370  *  SHELL32_GetItemAttributes
371  *
372  * NOTES
373  * Observed values:
374  *  folder:     0xE0000177      FILESYSTEM | HASSUBFOLDER | FOLDER
375  *  file:       0x40000177      FILESYSTEM
376  *  drive:      0xf0000144      FILESYSTEM | HASSUBFOLDER | FOLDER | FILESYSANCESTOR
377  *  mycomputer: 0xb0000154      HASSUBFOLDER | FOLDER | FILESYSANCESTOR
378  *  (seems to be default for shell extensions if no registry entry exists)
379  *
380  * win2k:
381  *  folder:    0xF0400177      FILESYSTEM | HASSUBFOLDER | FOLDER | FILESYSANCESTOR | CANMONIKER
382  *  file:      0x40400177      FILESYSTEM | CANMONIKER
383  *  drive      0xF0400154      FILESYSTEM | HASSUBFOLDER | FOLDER | FILESYSANCESTOR | CANMONIKER | CANRENAME (LABEL)
384  *
385  * According to the MSDN documentation this function should not set flags. It claims only to reset flags when necessary.
386  * However it turns out the native shell32.dll _sets_ flags in several cases - so do we.
387  */
388 HRESULT SHELL32_GetItemAttributes (IShellFolder * psf, LPCITEMIDLIST pidl, LPDWORD pdwAttributes)
389 {
390     DWORD dwAttributes;
391     BOOL has_guid;
392     static const DWORD dwSupportedAttr=
393                           SFGAO_CANCOPY |           /*0x00000001 */
394                           SFGAO_CANMOVE |           /*0x00000002 */
395                           SFGAO_CANLINK |           /*0x00000004 */
396                           SFGAO_CANRENAME |         /*0x00000010 */
397                           SFGAO_CANDELETE |         /*0x00000020 */
398                           SFGAO_HASPROPSHEET |      /*0x00000040 */
399                           SFGAO_DROPTARGET |        /*0x00000100 */
400                           SFGAO_LINK |              /*0x00010000 */
401                           SFGAO_READONLY |          /*0x00040000 */
402                           SFGAO_HIDDEN |            /*0x00080000 */
403                           SFGAO_FILESYSANCESTOR |   /*0x10000000 */
404                           SFGAO_FOLDER |            /*0x20000000 */
405                           SFGAO_FILESYSTEM |        /*0x40000000 */
406                           SFGAO_HASSUBFOLDER;       /*0x80000000 */
407     
408     TRACE ("0x%08x\n", *pdwAttributes);
409
410     if (*pdwAttributes & ~dwSupportedAttr)
411     {
412         WARN ("attributes 0x%08x not implemented\n", (*pdwAttributes & ~dwSupportedAttr));
413         *pdwAttributes &= dwSupportedAttr;
414     }
415
416     has_guid = _ILGetGUIDPointer(pidl) != NULL;
417
418     dwAttributes = *pdwAttributes;
419
420     if (_ILIsDrive (pidl)) {
421         *pdwAttributes &= SFGAO_HASSUBFOLDER|SFGAO_FILESYSTEM|SFGAO_FOLDER|SFGAO_FILESYSANCESTOR|
422             SFGAO_DROPTARGET|SFGAO_HASPROPSHEET|SFGAO_CANLINK;
423     } else if (has_guid && HCR_GetFolderAttributes(pidl, &dwAttributes)) {
424         *pdwAttributes = dwAttributes;
425     } else if (_ILGetDataPointer (pidl)) {
426         dwAttributes = _ILGetFileAttributes (pidl, NULL, 0);
427
428         if (!dwAttributes && has_guid) {
429             WCHAR path[MAX_PATH];
430             STRRET strret;
431
432             /* File attributes are not present in the internal PIDL structure, so get them from the file system. */
433
434             HRESULT hr = IShellFolder_GetDisplayNameOf(psf, pidl, SHGDN_FORPARSING, &strret);
435
436             if (SUCCEEDED(hr)) {
437                 hr = StrRetToBufW(&strret, pidl, path, MAX_PATH);
438
439                 /* call GetFileAttributes() only for file system paths, not for parsing names like "::{...}" */
440                 if (SUCCEEDED(hr) && path[0]!=':')
441                     dwAttributes = GetFileAttributesW(path);
442             }
443         }
444
445         /* Set common attributes */
446         *pdwAttributes |= SFGAO_FILESYSTEM | SFGAO_DROPTARGET | SFGAO_HASPROPSHEET | SFGAO_CANDELETE | 
447                           SFGAO_CANRENAME | SFGAO_CANLINK | SFGAO_CANMOVE | SFGAO_CANCOPY;
448
449         if (dwAttributes & FILE_ATTRIBUTE_DIRECTORY)
450             *pdwAttributes |=  (SFGAO_FOLDER | SFGAO_HASSUBFOLDER | SFGAO_FILESYSANCESTOR);
451         else
452             *pdwAttributes &= ~(SFGAO_FOLDER | SFGAO_HASSUBFOLDER | SFGAO_FILESYSANCESTOR);
453
454         if (dwAttributes & FILE_ATTRIBUTE_HIDDEN)
455             *pdwAttributes |=  SFGAO_HIDDEN;
456         else
457             *pdwAttributes &= ~SFGAO_HIDDEN;
458
459         if (dwAttributes & FILE_ATTRIBUTE_READONLY)
460             *pdwAttributes |=  SFGAO_READONLY;
461         else
462             *pdwAttributes &= ~SFGAO_READONLY;
463
464         if (SFGAO_LINK & *pdwAttributes) {
465             char ext[MAX_PATH];
466
467             if (!_ILGetExtension(pidl, ext, MAX_PATH) || lstrcmpiA(ext, "lnk"))
468                 *pdwAttributes &= ~SFGAO_LINK;
469         }
470     } else {
471         *pdwAttributes &= SFGAO_HASSUBFOLDER|SFGAO_FOLDER|SFGAO_FILESYSANCESTOR|SFGAO_DROPTARGET|SFGAO_HASPROPSHEET|SFGAO_CANRENAME|SFGAO_CANLINK;
472     }
473     TRACE ("-- 0x%08x\n", *pdwAttributes);
474     return S_OK;
475 }
476
477 /***********************************************************************
478  *  SHELL32_CompareIDs
479  */
480 HRESULT SHELL32_CompareIDs (IShellFolder * iface, LPARAM lParam, LPCITEMIDLIST pidl1, LPCITEMIDLIST pidl2)
481 {
482     int type1,
483       type2;
484     char szTemp1[MAX_PATH];
485     char szTemp2[MAX_PATH];
486     HRESULT nReturn;
487     LPITEMIDLIST firstpidl,
488       nextpidl1,
489       nextpidl2;
490     IShellFolder *psf;
491
492     /* test for empty pidls */
493     BOOL isEmpty1 = _ILIsDesktop (pidl1);
494     BOOL isEmpty2 = _ILIsDesktop (pidl2);
495
496     if (isEmpty1 && isEmpty2)
497         return MAKE_HRESULT( SEVERITY_SUCCESS, 0, 0 );
498     if (isEmpty1)
499         return MAKE_HRESULT( SEVERITY_SUCCESS, 0, (WORD)-1 );
500     if (isEmpty2)
501         return MAKE_HRESULT( SEVERITY_SUCCESS, 0, 1 );
502
503     /* test for different types. Sort order is the PT_* constant */
504     type1 = _ILGetDataPointer (pidl1)->type;
505     type2 = _ILGetDataPointer (pidl2)->type;
506     if (type1 < type2)
507         return MAKE_HRESULT( SEVERITY_SUCCESS, 0, (WORD)-1 );
508     else if (type1 > type2)
509         return MAKE_HRESULT( SEVERITY_SUCCESS, 0, 1 );
510
511     /* test for name of pidl */
512     _ILSimpleGetText (pidl1, szTemp1, MAX_PATH);
513     _ILSimpleGetText (pidl2, szTemp2, MAX_PATH);
514     nReturn = lstrcmpiA (szTemp1, szTemp2);
515     if (nReturn < 0)
516         return MAKE_HRESULT( SEVERITY_SUCCESS, 0, (WORD)-1 );
517     else if (nReturn > 0)
518         return MAKE_HRESULT( SEVERITY_SUCCESS, 0, 1 );
519
520     /* test of complex pidls */
521     firstpidl = ILCloneFirst (pidl1);
522     nextpidl1 = ILGetNext (pidl1);
523     nextpidl2 = ILGetNext (pidl2);
524
525     /* optimizing: test special cases and bind not deeper */
526     /* the deeper shellfolder would do the same */
527     isEmpty1 = _ILIsDesktop (nextpidl1);
528     isEmpty2 = _ILIsDesktop (nextpidl2);
529
530     if (isEmpty1 && isEmpty2) {
531         return MAKE_HRESULT( SEVERITY_SUCCESS, 0, 0 );
532     } else if (isEmpty1) {
533         return MAKE_HRESULT( SEVERITY_SUCCESS, 0, (WORD)-1 );
534     } else if (isEmpty2) {
535         return MAKE_HRESULT( SEVERITY_SUCCESS, 0, 1 );
536     /* optimizing end */
537     } else if (SUCCEEDED (IShellFolder_BindToObject (iface, firstpidl, NULL, &IID_IShellFolder, (LPVOID *) & psf))) {
538         nReturn = IShellFolder_CompareIDs (psf, lParam, nextpidl1, nextpidl2);
539         IShellFolder_Release (psf);
540     }
541     ILFree (firstpidl);
542     return nReturn;
543 }
544
545 /***********************************************************************
546  *  SHCreateLinks
547  *
548  *   Undocumented.
549  */
550 HRESULT WINAPI SHCreateLinks( HWND hWnd, LPCSTR lpszDir, LPDATAOBJECT lpDataObject,
551                               UINT uFlags, LPITEMIDLIST *lppidlLinks)
552 {
553     FIXME("%p %s %p %08x %p\n",hWnd,lpszDir,lpDataObject,uFlags,lppidlLinks);
554     return E_NOTIMPL;
555 }