3 * Virtual Workplace folder
5 * Copyright 1997 Marcus Meissner
6 * Copyright 1998, 1999, 2002 Juergen Schmied
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include "wine/port.h"
38 #include "wine/obj_base.h"
39 #include "wine/obj_dragdrop.h"
40 #include "wine/obj_shellfolder.h"
41 #include "undocshell.h"
42 #include "shell32_main.h"
45 #include "shellfolder.h"
46 #include "wine/debug.h"
50 WINE_DEFAULT_DEBUG_CHANNEL (shell
);
52 /***********************************************************************
53 * IShellFolder implementation
57 ICOM_VFIELD (IShellFolder2
);
59 ICOM_VTABLE (IPersistFolder2
) * lpVtblPersistFolder2
;
61 /* both paths are parsible from the desktop */
62 LPITEMIDLIST pidlRoot
; /* absolute pidl */
63 int dwAttributes
; /* attributes returned by GetAttributesOf FIXME: use it */
66 static struct ICOM_VTABLE (IShellFolder2
) vt_ShellFolder2
;
67 static struct ICOM_VTABLE (IPersistFolder2
) vt_PersistFolder2
;
69 HRESULT WINAPI
ISF_MyComputer_Constructor (IUnknown
* pUnkOuter
, REFIID riid
, LPVOID
* ppv
);
71 #define _IPersistFolder2_Offset ((int)(&(((IGenericSFImpl*)0)->lpVtblPersistFolder2)))
72 #define _ICOM_THIS_From_IPersistFolder2(class, name) class* This = (class*)(((char*)name)-_IPersistFolder2_Offset);
75 converts This to a interface pointer
77 #define _IUnknown_(This) (IUnknown*)&(This->lpVtbl)
78 #define _IShellFolder_(This) (IShellFolder*)&(This->lpVtbl)
79 #define _IShellFolder2_(This) (IShellFolder2*)&(This->lpVtbl)
81 #define _IPersist_(This) (IPersist*)&(This->lpVtblPersistFolder2)
82 #define _IPersistFolder_(This) (IPersistFolder*)&(This->lpVtblPersistFolder2)
83 #define _IPersistFolder2_(This) (IPersistFolder2*)&(This->lpVtblPersistFolder2)
85 /***********************************************************************
86 * IShellFolder [MyComputer] implementation
89 static shvheader MyComputerSFHeader
[] = {
90 {IDS_SHV_COLUMN1
, SHCOLSTATE_TYPE_STR
| SHCOLSTATE_ONBYDEFAULT
, LVCFMT_RIGHT
, 15},
91 {IDS_SHV_COLUMN3
, SHCOLSTATE_TYPE_STR
| SHCOLSTATE_ONBYDEFAULT
, LVCFMT_RIGHT
, 10},
92 {IDS_SHV_COLUMN6
, SHCOLSTATE_TYPE_STR
| SHCOLSTATE_ONBYDEFAULT
, LVCFMT_RIGHT
, 10},
93 {IDS_SHV_COLUMN7
, SHCOLSTATE_TYPE_STR
| SHCOLSTATE_ONBYDEFAULT
, LVCFMT_RIGHT
, 10},
96 #define MYCOMPUTERSHELLVIEWCOLUMNS 4
98 /**************************************************************************
99 * ISF_MyComputer_Constructor
101 HRESULT WINAPI
ISF_MyComputer_Constructor (IUnknown
* pUnkOuter
, REFIID riid
, LPVOID
* ppv
)
105 TRACE ("unkOut=%p %s\n", pUnkOuter
, shdebugstr_guid (riid
));
110 return CLASS_E_NOAGGREGATION
;
112 sf
= (IGenericSFImpl
*) LocalAlloc (GMEM_ZEROINIT
, sizeof (IGenericSFImpl
));
114 return E_OUTOFMEMORY
;
117 ICOM_VTBL (sf
) = &vt_ShellFolder2
;
118 sf
->lpVtblPersistFolder2
= &vt_PersistFolder2
;
119 sf
->pidlRoot
= _ILCreateMyComputer (); /* my qualified pidl */
121 if (!SUCCEEDED (IUnknown_QueryInterface (_IUnknown_ (sf
), riid
, ppv
))) {
122 IUnknown_Release (_IUnknown_ (sf
));
123 return E_NOINTERFACE
;
126 TRACE ("--(%p)\n", sf
);
130 /**************************************************************************
131 * ISF_MyComputer_fnQueryInterface
133 * NOTES supports not IPersist/IPersistFolder
135 static HRESULT WINAPI
ISF_MyComputer_fnQueryInterface (IShellFolder2
* iface
, REFIID riid
, LPVOID
* ppvObj
)
137 ICOM_THIS (IGenericSFImpl
, iface
);
139 TRACE ("(%p)->(%s,%p)\n", This
, shdebugstr_guid (riid
), ppvObj
);
143 if (IsEqualIID (riid
, &IID_IUnknown
) ||
144 IsEqualIID (riid
, &IID_IShellFolder
) || IsEqualIID (riid
, &IID_IShellFolder2
)) {
146 } else if (IsEqualIID (riid
, &IID_IPersist
) ||
147 IsEqualIID (riid
, &IID_IPersistFolder
) || IsEqualIID (riid
, &IID_IPersistFolder2
)) {
148 *ppvObj
= _IPersistFolder2_ (This
);
152 IUnknown_AddRef ((IUnknown
*) (*ppvObj
));
153 TRACE ("-- Interface: (%p)->(%p)\n", ppvObj
, *ppvObj
);
156 TRACE ("-- Interface: E_NOINTERFACE\n");
157 return E_NOINTERFACE
;
160 static ULONG WINAPI
ISF_MyComputer_fnAddRef (IShellFolder2
* iface
)
162 ICOM_THIS (IGenericSFImpl
, iface
);
164 TRACE ("(%p)->(count=%lu)\n", This
, This
->ref
);
166 return ++(This
->ref
);
169 static ULONG WINAPI
ISF_MyComputer_fnRelease (IShellFolder2
* iface
)
171 ICOM_THIS (IGenericSFImpl
, iface
);
173 TRACE ("(%p)->(count=%lu)\n", This
, This
->ref
);
175 if (!--(This
->ref
)) {
176 TRACE ("-- destroying IShellFolder(%p)\n", This
);
178 SHFree (This
->pidlRoot
);
179 LocalFree ((HLOCAL
) This
);
184 /**************************************************************************
185 * ISF_MyComputer_fnParseDisplayName
187 static HRESULT WINAPI
188 ISF_MyComputer_fnParseDisplayName (IShellFolder2
* iface
,
191 LPOLESTR lpszDisplayName
,
192 DWORD
* pchEaten
, LPITEMIDLIST
* ppidl
, DWORD
* pdwAttributes
)
194 ICOM_THIS (IGenericSFImpl
, iface
);
196 HRESULT hr
= E_OUTOFMEMORY
;
197 LPCWSTR szNext
= NULL
;
198 WCHAR szElement
[MAX_PATH
];
199 CHAR szTempA
[MAX_PATH
];
200 LPITEMIDLIST pidlTemp
;
202 TRACE ("(%p)->(HWND=0x%08x,%p,%p=%s,%p,pidl=%p,%p)\n",
203 This
, hwndOwner
, pbcReserved
, lpszDisplayName
, debugstr_w (lpszDisplayName
), pchEaten
, ppidl
, pdwAttributes
);
207 *pchEaten
= 0; /* strange but like the original */
209 /* do we have an absolute path name ? */
210 if (PathGetDriveNumberW (lpszDisplayName
) >= 0 && lpszDisplayName
[2] == (WCHAR
) '\\') {
211 szNext
= GetNextElementW (lpszDisplayName
, szElement
, MAX_PATH
);
212 WideCharToMultiByte (CP_ACP
, 0, szElement
, -1, szTempA
, MAX_PATH
, NULL
, NULL
);
213 pidlTemp
= _ILCreateDrive (szTempA
);
215 if (szNext
&& *szNext
) {
216 hr
= SHELL32_ParseNextElement (hwndOwner
, iface
, &pidlTemp
, (LPOLESTR
) szNext
, pchEaten
, pdwAttributes
);
218 if (pdwAttributes
&& *pdwAttributes
) {
219 SHELL32_GetItemAttributes (_IShellFolder_ (This
), pidlTemp
, pdwAttributes
);
226 TRACE ("(%p)->(-- ret=0x%08lx)\n", This
, hr
);
231 /**************************************************************************
232 * ISF_MyComputer_fnEnumObjects
234 static HRESULT WINAPI
235 ISF_MyComputer_fnEnumObjects (IShellFolder2
* iface
, HWND hwndOwner
, DWORD dwFlags
, LPENUMIDLIST
* ppEnumIDList
)
237 ICOM_THIS (IGenericSFImpl
, iface
);
239 TRACE ("(%p)->(HWND=0x%08x flags=0x%08lx pplist=%p)\n", This
, hwndOwner
, dwFlags
, ppEnumIDList
);
241 *ppEnumIDList
= IEnumIDList_Constructor (NULL
, dwFlags
, EIDL_MYCOMP
);
243 TRACE ("-- (%p)->(new ID List: %p)\n", This
, *ppEnumIDList
);
245 return (*ppEnumIDList
) ? S_OK
: E_OUTOFMEMORY
;
248 /**************************************************************************
249 * ISF_MyComputer_fnBindToObject
251 static HRESULT WINAPI
252 ISF_MyComputer_fnBindToObject (IShellFolder2
* iface
, LPCITEMIDLIST pidl
,
253 LPBC pbcReserved
, REFIID riid
, LPVOID
* ppvOut
)
255 ICOM_THIS (IGenericSFImpl
, iface
);
257 TRACE ("(%p)->(pidl=%p,%p,%s,%p)\n", This
, pidl
, pbcReserved
, shdebugstr_guid (riid
), ppvOut
);
259 return SHELL32_BindToChild (This
->pidlRoot
, NULL
, pidl
, riid
, ppvOut
);
262 /**************************************************************************
263 * ISF_MyComputer_fnBindToStorage
265 static HRESULT WINAPI
266 ISF_MyComputer_fnBindToStorage (IShellFolder2
* iface
,
267 LPCITEMIDLIST pidl
, LPBC pbcReserved
, REFIID riid
, LPVOID
* ppvOut
)
269 ICOM_THIS (IGenericSFImpl
, iface
);
271 FIXME ("(%p)->(pidl=%p,%p,%s,%p) stub\n", This
, pidl
, pbcReserved
, shdebugstr_guid (riid
), ppvOut
);
277 /**************************************************************************
278 * ISF_MyComputer_fnCompareIDs
281 static HRESULT WINAPI
282 ISF_MyComputer_fnCompareIDs (IShellFolder2
* iface
, LPARAM lParam
, LPCITEMIDLIST pidl1
, LPCITEMIDLIST pidl2
)
284 ICOM_THIS (IGenericSFImpl
, iface
);
288 TRACE ("(%p)->(0x%08lx,pidl1=%p,pidl2=%p)\n", This
, lParam
, pidl1
, pidl2
);
289 nReturn
= SHELL32_CompareIDs (_IShellFolder_ (This
), lParam
, pidl1
, pidl2
);
290 TRACE ("-- %i\n", nReturn
);
294 /**************************************************************************
295 * ISF_MyComputer_fnCreateViewObject
297 static HRESULT WINAPI
298 ISF_MyComputer_fnCreateViewObject (IShellFolder2
* iface
, HWND hwndOwner
, REFIID riid
, LPVOID
* ppvOut
)
300 ICOM_THIS (IGenericSFImpl
, iface
);
302 LPSHELLVIEW pShellView
;
303 HRESULT hr
= E_INVALIDARG
;
305 TRACE ("(%p)->(hwnd=0x%x,%s,%p)\n", This
, hwndOwner
, shdebugstr_guid (riid
), ppvOut
);
310 if (IsEqualIID (riid
, &IID_IDropTarget
)) {
311 WARN ("IDropTarget not implemented\n");
313 } else if (IsEqualIID (riid
, &IID_IContextMenu
)) {
314 WARN ("IContextMenu not implemented\n");
316 } else if (IsEqualIID (riid
, &IID_IShellView
)) {
317 pShellView
= IShellView_Constructor ((IShellFolder
*) iface
);
319 hr
= IShellView_QueryInterface (pShellView
, riid
, ppvOut
);
320 IShellView_Release (pShellView
);
324 TRACE ("-- (%p)->(interface=%p)\n", This
, ppvOut
);
328 /**************************************************************************
329 * ISF_MyComputer_fnGetAttributesOf
331 static HRESULT WINAPI
332 ISF_MyComputer_fnGetAttributesOf (IShellFolder2
* iface
, UINT cidl
, LPCITEMIDLIST
* apidl
, DWORD
* rgfInOut
)
334 ICOM_THIS (IGenericSFImpl
, iface
);
338 TRACE ("(%p)->(cidl=%d apidl=%p mask=0x%08lx)\n", This
, cidl
, apidl
, *rgfInOut
);
340 if ((!cidl
) || (!apidl
) || (!rgfInOut
))
343 while (cidl
> 0 && *apidl
) {
345 SHELL32_GetItemAttributes (_IShellFolder_ (This
), *apidl
, rgfInOut
);
350 TRACE ("-- result=0x%08lx\n", *rgfInOut
);
354 /**************************************************************************
355 * ISF_MyComputer_fnGetUIObjectOf
358 * HWND hwndOwner, //[in ] Parent window for any output
359 * UINT cidl, //[in ] array size
360 * LPCITEMIDLIST* apidl, //[in ] simple pidl array
361 * REFIID riid, //[in ] Requested Interface
362 * UINT* prgfInOut, //[ ] reserved
363 * LPVOID* ppvObject) //[out] Resulting Interface
366 static HRESULT WINAPI
367 ISF_MyComputer_fnGetUIObjectOf (IShellFolder2
* iface
,
369 UINT cidl
, LPCITEMIDLIST
* apidl
, REFIID riid
, UINT
* prgfInOut
, LPVOID
* ppvOut
)
371 ICOM_THIS (IGenericSFImpl
, iface
);
374 IUnknown
*pObj
= NULL
;
375 HRESULT hr
= E_INVALIDARG
;
377 TRACE ("(%p)->(0x%04x,%u,apidl=%p,%s,%p,%p)\n",
378 This
, hwndOwner
, cidl
, apidl
, shdebugstr_guid (riid
), prgfInOut
, ppvOut
);
383 if (IsEqualIID (riid
, &IID_IContextMenu
) && (cidl
>= 1)) {
384 pObj
= (LPUNKNOWN
) ISvItemCm_Constructor ((IShellFolder
*) iface
, This
->pidlRoot
, apidl
, cidl
);
386 } else if (IsEqualIID (riid
, &IID_IDataObject
) && (cidl
>= 1)) {
387 pObj
= (LPUNKNOWN
) IDataObject_Constructor (hwndOwner
, This
->pidlRoot
, apidl
, cidl
);
389 } else if (IsEqualIID (riid
, &IID_IExtractIconA
) && (cidl
== 1)) {
390 pidl
= ILCombine (This
->pidlRoot
, apidl
[0]);
391 pObj
= (LPUNKNOWN
) IExtractIconA_Constructor (pidl
);
394 } else if (IsEqualIID (riid
, &IID_IDropTarget
) && (cidl
>= 1)) {
395 hr
= IShellFolder_QueryInterface (iface
, &IID_IDropTarget
, (LPVOID
*) & pObj
);
405 TRACE ("(%p)->hr=0x%08lx\n", This
, hr
);
409 /**************************************************************************
410 * ISF_MyComputer_fnGetDisplayNameOf
413 * The desktopfolder creates only complete paths (SHGDN_FORPARSING).
414 * SHGDN_INFOLDER makes no sense.
416 static HRESULT WINAPI
ISF_MyComputer_fnGetDisplayNameOf (IShellFolder2
* iface
, LPCITEMIDLIST pidl
, DWORD dwFlags
, LPSTRRET strRet
)
418 ICOM_THIS (IGenericSFImpl
, iface
);
420 char szPath
[MAX_PATH
],
425 TRACE ("(%p)->(pidl=%p,0x%08lx,%p)\n", This
, pidl
, dwFlags
, strRet
);
434 bSimplePidl
= _ILIsPidlSimple (pidl
);
436 if (_ILIsSpecialFolder (pidl
)) {
437 /* take names of special folders only if its only this folder */
439 _ILSimpleGetText (pidl
, szPath
, MAX_PATH
); /* append my own path */
441 FIXME ("special folder\n");
444 if (!_ILIsDrive (pidl
)) {
445 ERR ("Wrong pidl type\n");
449 _ILSimpleGetText (pidl
, szPath
, MAX_PATH
); /* append my own path */
451 /* long view "lw_name (C:)" */
452 if (bSimplePidl
&& !(dwFlags
& SHGDN_FORPARSING
)) {
453 DWORD dwVolumeSerialNumber
,
454 dwMaximumComponetLength
,
457 GetVolumeInformationA (szPath
, szDrive
, sizeof (szDrive
) - 6, &dwVolumeSerialNumber
,
458 &dwMaximumComponetLength
, &dwFileSystemFlags
, NULL
, 0);
459 strcat (szDrive
, " (");
460 strncat (szDrive
, szPath
, 2);
461 strcat (szDrive
, ")");
462 strcpy (szPath
, szDrive
);
466 if (!bSimplePidl
) { /* go deeper if needed */
467 PathAddBackslashA (szPath
);
468 len
= strlen (szPath
);
471 (SHELL32_GetDisplayNameOfChild (iface
, pidl
, dwFlags
| SHGDN_INFOLDER
, szPath
+ len
, MAX_PATH
- len
)))
472 return E_OUTOFMEMORY
;
474 strRet
->uType
= STRRET_CSTR
;
475 lstrcpynA (strRet
->u
.cStr
, szPath
, MAX_PATH
);
477 TRACE ("-- (%p)->(%s)\n", This
, szPath
);
481 /**************************************************************************
482 * ISF_MyComputer_fnSetNameOf
483 * Changes the name of a file object or subfolder, possibly changing its item
484 * identifier in the process.
487 * HWND hwndOwner, //[in ] Owner window for output
488 * LPCITEMIDLIST pidl, //[in ] simple pidl of item to change
489 * LPCOLESTR lpszName, //[in ] the items new display name
490 * DWORD dwFlags, //[in ] SHGNO formatting flags
491 * LPITEMIDLIST* ppidlOut) //[out] simple pidl returned
493 static HRESULT WINAPI
ISF_MyComputer_fnSetNameOf (IShellFolder2
* iface
, HWND hwndOwner
, LPCITEMIDLIST pidl
, /*simple pidl */
494 LPCOLESTR lpName
, DWORD dwFlags
, LPITEMIDLIST
* pPidlOut
)
496 ICOM_THIS (IGenericSFImpl
, iface
);
497 FIXME ("(%p)->(%u,pidl=%p,%s,%lu,%p)\n", This
, hwndOwner
, pidl
, debugstr_w (lpName
), dwFlags
, pPidlOut
);
501 static HRESULT WINAPI
ISF_MyComputer_fnGetDefaultSearchGUID (IShellFolder2
* iface
, GUID
* pguid
)
503 ICOM_THIS (IGenericSFImpl
, iface
);
504 FIXME ("(%p)\n", This
);
507 static HRESULT WINAPI
ISF_MyComputer_fnEnumSearches (IShellFolder2
* iface
, IEnumExtraSearch
** ppenum
)
509 ICOM_THIS (IGenericSFImpl
, iface
);
510 FIXME ("(%p)\n", This
);
513 static HRESULT WINAPI
ISF_MyComputer_fnGetDefaultColumn (IShellFolder2
* iface
, DWORD dwRes
, ULONG
* pSort
, ULONG
* pDisplay
)
515 ICOM_THIS (IGenericSFImpl
, iface
);
517 TRACE ("(%p)\n", This
);
519 if (pSort
) *pSort
= 0;
520 if (pDisplay
) *pDisplay
= 0;
523 static HRESULT WINAPI
ISF_MyComputer_fnGetDefaultColumnState (IShellFolder2
* iface
, UINT iColumn
, DWORD
* pcsFlags
)
525 ICOM_THIS (IGenericSFImpl
, iface
);
527 TRACE ("(%p)\n", This
);
529 if (!pcsFlags
|| iColumn
>= MYCOMPUTERSHELLVIEWCOLUMNS
) return E_INVALIDARG
;
530 *pcsFlags
= MyComputerSFHeader
[iColumn
].pcsFlags
;
533 static HRESULT WINAPI
ISF_MyComputer_fnGetDetailsEx (IShellFolder2
* iface
, LPCITEMIDLIST pidl
, const SHCOLUMNID
* pscid
, VARIANT
* pv
)
535 ICOM_THIS (IGenericSFImpl
, iface
);
536 FIXME ("(%p)\n", This
);
540 /* FIXME: drive size >4GB is rolling over */
541 static HRESULT WINAPI
ISF_MyComputer_fnGetDetailsOf (IShellFolder2
* iface
, LPCITEMIDLIST pidl
, UINT iColumn
, SHELLDETAILS
* psd
)
543 ICOM_THIS (IGenericSFImpl
, iface
);
546 TRACE ("(%p)->(%p %i %p)\n", This
, pidl
, iColumn
, psd
);
548 if (!psd
|| iColumn
>= MYCOMPUTERSHELLVIEWCOLUMNS
)
552 psd
->fmt
= MyComputerSFHeader
[iColumn
].fmt
;
553 psd
->cxChar
= MyComputerSFHeader
[iColumn
].cxChar
;
554 psd
->str
.uType
= STRRET_CSTR
;
555 LoadStringA (shell32_hInstance
, MyComputerSFHeader
[iColumn
].colnameid
, psd
->str
.u
.cStr
, MAX_PATH
);
558 char szPath
[MAX_PATH
];
559 ULARGE_INTEGER ulBytes
;
561 psd
->str
.u
.cStr
[0] = 0x00;
562 psd
->str
.uType
= STRRET_CSTR
;
565 hr
= IShellFolder_GetDisplayNameOf (iface
, pidl
, SHGDN_NORMAL
| SHGDN_INFOLDER
, &psd
->str
);
568 _ILGetFileType (pidl
, psd
->str
.u
.cStr
, MAX_PATH
);
570 case 2: /* total size */
571 if (_ILIsDrive (pidl
)) {
572 _ILSimpleGetText (pidl
, szPath
, MAX_PATH
);
573 GetDiskFreeSpaceExA (szPath
, NULL
, &ulBytes
, NULL
);
574 StrFormatByteSizeA (ulBytes
.s
.LowPart
, psd
->str
.u
.cStr
, MAX_PATH
);
577 case 3: /* free size */
578 if (_ILIsDrive (pidl
)) {
579 _ILSimpleGetText (pidl
, szPath
, MAX_PATH
);
580 GetDiskFreeSpaceExA (szPath
, &ulBytes
, NULL
, NULL
);
581 StrFormatByteSizeA (ulBytes
.s
.LowPart
, psd
->str
.u
.cStr
, MAX_PATH
);
590 static HRESULT WINAPI
ISF_MyComputer_fnMapNameToSCID (IShellFolder2
* iface
, LPCWSTR pwszName
, SHCOLUMNID
* pscid
)
592 ICOM_THIS (IGenericSFImpl
, iface
);
593 FIXME ("(%p)\n", This
);
597 static ICOM_VTABLE (IShellFolder2
) vt_ShellFolder2
=
599 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
600 ISF_MyComputer_fnQueryInterface
,
601 ISF_MyComputer_fnAddRef
,
602 ISF_MyComputer_fnRelease
,
603 ISF_MyComputer_fnParseDisplayName
,
604 ISF_MyComputer_fnEnumObjects
,
605 ISF_MyComputer_fnBindToObject
,
606 ISF_MyComputer_fnBindToStorage
,
607 ISF_MyComputer_fnCompareIDs
,
608 ISF_MyComputer_fnCreateViewObject
,
609 ISF_MyComputer_fnGetAttributesOf
,
610 ISF_MyComputer_fnGetUIObjectOf
,
611 ISF_MyComputer_fnGetDisplayNameOf
,
612 ISF_MyComputer_fnSetNameOf
,
614 ISF_MyComputer_fnGetDefaultSearchGUID
,
615 ISF_MyComputer_fnEnumSearches
,
616 ISF_MyComputer_fnGetDefaultColumn
,
617 ISF_MyComputer_fnGetDefaultColumnState
,
618 ISF_MyComputer_fnGetDetailsEx
,
619 ISF_MyComputer_fnGetDetailsOf
,
620 ISF_MyComputer_fnMapNameToSCID
623 /************************************************************************
624 * IMCFldr_PersistFolder2_QueryInterface
626 static HRESULT WINAPI
IMCFldr_PersistFolder2_QueryInterface (IPersistFolder2
* iface
, REFIID iid
, LPVOID
* ppvObj
)
628 _ICOM_THIS_From_IPersistFolder2 (IGenericSFImpl
, iface
);
630 TRACE ("(%p)\n", This
);
632 return IUnknown_QueryInterface (_IUnknown_ (This
), iid
, ppvObj
);
635 /************************************************************************
636 * IMCFldr_PersistFolder2_AddRef
638 static ULONG WINAPI
IMCFldr_PersistFolder2_AddRef (IPersistFolder2
* iface
)
640 _ICOM_THIS_From_IPersistFolder2 (IGenericSFImpl
, iface
);
642 TRACE ("(%p)->(count=%lu)\n", This
, This
->ref
);
644 return IUnknown_AddRef (_IUnknown_ (This
));
647 /************************************************************************
648 * ISFPersistFolder_Release
650 static ULONG WINAPI
IMCFldr_PersistFolder2_Release (IPersistFolder2
* iface
)
652 _ICOM_THIS_From_IPersistFolder2 (IGenericSFImpl
, iface
);
654 TRACE ("(%p)->(count=%lu)\n", This
, This
->ref
);
656 return IUnknown_Release (_IUnknown_ (This
));
659 /************************************************************************
660 * IMCFldr_PersistFolder2_GetClassID
662 static HRESULT WINAPI
IMCFldr_PersistFolder2_GetClassID (IPersistFolder2
* iface
, CLSID
* lpClassId
)
664 _ICOM_THIS_From_IPersistFolder2 (IGenericSFImpl
, iface
);
666 TRACE ("(%p)\n", This
);
670 *lpClassId
= CLSID_MyComputer
;
675 /************************************************************************
676 * IMCFldr_PersistFolder2_Initialize
678 * NOTES: it makes no sense to change the pidl
680 static HRESULT WINAPI
IMCFldr_PersistFolder2_Initialize (IPersistFolder2
* iface
, LPCITEMIDLIST pidl
)
682 _ICOM_THIS_From_IPersistFolder2 (IGenericSFImpl
, iface
);
683 TRACE ("(%p)->(%p)\n", This
, pidl
);
687 /**************************************************************************
688 * IPersistFolder2_fnGetCurFolder
690 static HRESULT WINAPI
IMCFldr_PersistFolder2_GetCurFolder (IPersistFolder2
* iface
, LPITEMIDLIST
* pidl
)
692 _ICOM_THIS_From_IPersistFolder2 (IGenericSFImpl
, iface
);
694 TRACE ("(%p)->(%p)\n", This
, pidl
);
698 *pidl
= ILClone (This
->pidlRoot
);
702 static ICOM_VTABLE (IPersistFolder2
) vt_PersistFolder2
=
704 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
705 IMCFldr_PersistFolder2_QueryInterface
,
706 IMCFldr_PersistFolder2_AddRef
,
707 IMCFldr_PersistFolder2_Release
,
708 IMCFldr_PersistFolder2_GetClassID
,
709 IMCFldr_PersistFolder2_Initialize
,
710 IMCFldr_PersistFolder2_GetCurFolder