3 * Copyright 1997 Marcus Meissner
4 * Copyright 1998 Juergen Schmied
5 * Copyright 2005 Mike McCormack
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 * Nearly complete information about the binary formats
23 * of .lnk files available at http://www.wotsit.org
25 * You can use winedump to examine the contents of a link file:
28 * MSI advertised shortcuts are totally undocumented. They provide an
29 * icon for a program that is not yet installed, and invoke MSI to
30 * install the program when the shortcut is clicked on. They are
31 * created by passing a special string to SetPath, and the information
32 * in that string is parsed an stored.
36 #define NONAMELESSUNION
38 #include "wine/debug.h"
48 #include "undocshell.h"
51 #include "shell32_main.h"
59 WINE_DEFAULT_DEBUG_CHANNEL(shell
);
61 DEFINE_GUID( SHELL32_AdvtShortcutProduct
,
62 0x9db1186f,0x40df,0x11d1,0xaa,0x8c,0x00,0xc0,0x4f,0xb6,0x78,0x63);
63 DEFINE_GUID( SHELL32_AdvtShortcutComponent
,
64 0x9db1186e,0x40df,0x11d1,0xaa,0x8c,0x00,0xc0,0x4f,0xb6,0x78,0x63);
66 /* link file formats */
70 typedef struct _LINK_HEADER
72 DWORD dwSize
; /* 0x00 size of the header - 0x4c */
73 GUID MagicGuid
; /* 0x04 is CLSID_ShellLink */
74 DWORD dwFlags
; /* 0x14 describes elements following */
75 DWORD dwFileAttr
; /* 0x18 attributes of the target file */
76 FILETIME Time1
; /* 0x1c */
77 FILETIME Time2
; /* 0x24 */
78 FILETIME Time3
; /* 0x2c */
79 DWORD dwFileLength
; /* 0x34 File length */
80 DWORD nIcon
; /* 0x38 icon number */
81 DWORD fStartup
; /* 0x3c startup type */
82 DWORD wHotKey
; /* 0x40 hotkey */
83 DWORD Unknown5
; /* 0x44 */
84 DWORD Unknown6
; /* 0x48 */
85 } LINK_HEADER
, * PLINK_HEADER
;
87 #define SHLINK_LOCAL 0
88 #define SHLINK_REMOTE 1
90 typedef struct _LOCATION_INFO
97 DWORD dwNetworkVolTableOfs
;
101 typedef struct _LOCAL_VOLUME_INFO
109 typedef struct volume_info_t
113 WCHAR label
[12]; /* assume 8.3 */
118 static const IShellLinkAVtbl slvt
;
119 static const IShellLinkWVtbl slvtw
;
120 static const IPersistFileVtbl pfvt
;
121 static const IPersistStreamVtbl psvt
;
122 static const IShellLinkDataListVtbl dlvt
;
123 static const IShellExtInitVtbl eivt
;
124 static const IContextMenuVtbl cmvt
;
125 static const IObjectWithSiteVtbl owsvt
;
127 /* IShellLink Implementation */
131 const IShellLinkAVtbl
*lpVtbl
;
132 const IShellLinkWVtbl
*lpvtblw
;
133 const IPersistFileVtbl
*lpvtblPersistFile
;
134 const IPersistStreamVtbl
*lpvtblPersistStream
;
135 const IShellLinkDataListVtbl
*lpvtblShellLinkDataList
;
136 const IShellExtInitVtbl
*lpvtblShellExtInit
;
137 const IContextMenuVtbl
*lpvtblContextMenu
;
138 const IObjectWithSiteVtbl
*lpvtblObjectWithSite
;
142 /* data structures according to the information in the link */
162 INT iIdOpen
; /* id of the "Open" entry in the context menu */
165 LPOLESTR filepath
; /* file path returned by IPersistFile::GetCurFile */
168 static inline IShellLinkImpl
*impl_from_IShellLinkW( IShellLinkW
*iface
)
170 return (IShellLinkImpl
*)((char*)iface
- FIELD_OFFSET(IShellLinkImpl
, lpvtblw
));
173 static inline IShellLinkImpl
*impl_from_IPersistFile( IPersistFile
*iface
)
175 return (IShellLinkImpl
*)((char*)iface
- FIELD_OFFSET(IShellLinkImpl
, lpvtblPersistFile
));
178 static inline IShellLinkImpl
*impl_from_IPersistStream( IPersistStream
*iface
)
180 return (IShellLinkImpl
*)((char*)iface
- FIELD_OFFSET(IShellLinkImpl
, lpvtblPersistStream
));
183 static inline IShellLinkImpl
*impl_from_IShellLinkDataList( IShellLinkDataList
*iface
)
185 return (IShellLinkImpl
*)((char*)iface
- FIELD_OFFSET(IShellLinkImpl
, lpvtblShellLinkDataList
));
188 static inline IShellLinkImpl
*impl_from_IShellExtInit( IShellExtInit
*iface
)
190 return (IShellLinkImpl
*)((char*)iface
- FIELD_OFFSET(IShellLinkImpl
, lpvtblShellExtInit
));
193 static inline IShellLinkImpl
*impl_from_IContextMenu( IContextMenu
*iface
)
195 return (IShellLinkImpl
*)((char*)iface
- FIELD_OFFSET(IShellLinkImpl
, lpvtblContextMenu
));
198 static inline IShellLinkImpl
*impl_from_IObjectWithSite( IObjectWithSite
*iface
)
200 return (IShellLinkImpl
*)((char*)iface
- FIELD_OFFSET(IShellLinkImpl
, lpvtblObjectWithSite
));
203 static HRESULT
ShellLink_UpdatePath(LPCWSTR sPathRel
, LPCWSTR path
, LPCWSTR sWorkDir
, LPWSTR
* psPath
);
205 /* strdup on the process heap */
206 static inline LPWSTR
HEAP_strdupAtoW( HANDLE heap
, DWORD flags
, LPCSTR str
)
208 INT len
= MultiByteToWideChar( CP_ACP
, 0, str
, -1, NULL
, 0 );
209 LPWSTR p
= HeapAlloc( heap
, flags
, len
*sizeof (WCHAR
) );
212 MultiByteToWideChar( CP_ACP
, 0, str
, -1, p
, len
);
216 static inline LPWSTR
strdupW( LPCWSTR src
)
219 if (!src
) return NULL
;
220 dest
= HeapAlloc( GetProcessHeap(), 0, (lstrlenW(src
)+1)*sizeof(WCHAR
) );
226 /**************************************************************************
227 * ShellLink::QueryInterface implementation
229 static HRESULT
ShellLink_QueryInterface( IShellLinkImpl
*This
, REFIID riid
, LPVOID
*ppvObj
)
231 TRACE("(%p)->(\n\tIID:\t%s)\n",This
,debugstr_guid(riid
));
235 if(IsEqualIID(riid
, &IID_IUnknown
) || IsEqualIID(riid
, &IID_IShellLinkA
))
239 else if(IsEqualIID(riid
, &IID_IShellLinkW
))
241 *ppvObj
= &(This
->lpvtblw
);
243 else if(IsEqualIID(riid
, &IID_IPersistFile
))
245 *ppvObj
= &(This
->lpvtblPersistFile
);
247 else if(IsEqualIID(riid
, &IID_IPersistStream
))
249 *ppvObj
= &(This
->lpvtblPersistStream
);
251 else if(IsEqualIID(riid
, &IID_IShellLinkDataList
))
253 *ppvObj
= &(This
->lpvtblShellLinkDataList
);
255 else if(IsEqualIID(riid
, &IID_IShellExtInit
))
257 *ppvObj
= &(This
->lpvtblShellExtInit
);
259 else if(IsEqualIID(riid
, &IID_IContextMenu
))
261 *ppvObj
= &(This
->lpvtblContextMenu
);
263 else if(IsEqualIID(riid
, &IID_IObjectWithSite
))
265 *ppvObj
= &(This
->lpvtblObjectWithSite
);
270 IUnknown_AddRef((IUnknown
*)(*ppvObj
));
271 TRACE("-- Interface: (%p)->(%p)\n",ppvObj
,*ppvObj
);
274 ERR("-- Interface: E_NOINTERFACE\n");
275 return E_NOINTERFACE
;
278 /**************************************************************************
279 * ShellLink::AddRef implementation
281 static ULONG
ShellLink_AddRef( IShellLinkImpl
*This
)
283 ULONG refCount
= InterlockedIncrement(&This
->ref
);
285 TRACE("(%p)->(count=%u)\n", This
, refCount
- 1);
290 /**************************************************************************
291 * ShellLink::Release implementation
293 static ULONG
ShellLink_Release( IShellLinkImpl
*This
)
295 ULONG refCount
= InterlockedDecrement(&This
->ref
);
297 TRACE("(%p)->(count=%u)\n", This
, refCount
+ 1);
302 TRACE("-- destroying IShellLink(%p)\n",This
);
304 HeapFree(GetProcessHeap(), 0, This
->sIcoPath
);
305 HeapFree(GetProcessHeap(), 0, This
->sArgs
);
306 HeapFree(GetProcessHeap(), 0, This
->sWorkDir
);
307 HeapFree(GetProcessHeap(), 0, This
->sDescription
);
308 HeapFree(GetProcessHeap(), 0, This
->sPath
);
309 HeapFree(GetProcessHeap(), 0, This
->sPathRel
);
310 HeapFree(GetProcessHeap(), 0, This
->sProduct
);
311 HeapFree(GetProcessHeap(), 0, This
->sComponent
);
312 HeapFree(GetProcessHeap(), 0, This
->filepath
);
315 IUnknown_Release( This
->site
);
325 static HRESULT
ShellLink_GetClassID( IShellLinkImpl
*This
, CLSID
*pclsid
)
327 TRACE("%p %p\n", This
, pclsid
);
329 *pclsid
= CLSID_ShellLink
;
333 /**************************************************************************
334 * IPersistFile_QueryInterface
336 static HRESULT WINAPI
IPersistFile_fnQueryInterface(
341 IShellLinkImpl
*This
= impl_from_IPersistFile(iface
);
342 return ShellLink_QueryInterface( This
, riid
, ppvObj
);
345 /******************************************************************************
346 * IPersistFile_AddRef
348 static ULONG WINAPI
IPersistFile_fnAddRef(IPersistFile
* iface
)
350 IShellLinkImpl
*This
= impl_from_IPersistFile(iface
);
351 return ShellLink_AddRef( This
);
354 /******************************************************************************
355 * IPersistFile_Release
357 static ULONG WINAPI
IPersistFile_fnRelease(IPersistFile
* iface
)
359 IShellLinkImpl
*This
= impl_from_IPersistFile(iface
);
360 return IShellLinkA_Release((IShellLinkA
*)This
);
363 static HRESULT WINAPI
IPersistFile_fnGetClassID(IPersistFile
* iface
, CLSID
*pClassID
)
365 IShellLinkImpl
*This
= impl_from_IPersistFile(iface
);
366 return ShellLink_GetClassID( This
, pClassID
);
369 static HRESULT WINAPI
IPersistFile_fnIsDirty(IPersistFile
* iface
)
371 IShellLinkImpl
*This
= impl_from_IPersistFile(iface
);
373 TRACE("(%p)\n",This
);
381 static HRESULT WINAPI
IPersistFile_fnLoad(IPersistFile
* iface
, LPCOLESTR pszFileName
, DWORD dwMode
)
383 IShellLinkImpl
*This
= impl_from_IPersistFile(iface
);
384 IPersistStream
*StreamThis
= (IPersistStream
*)&This
->lpvtblPersistStream
;
388 TRACE("(%p, %s, %x)\n",This
, debugstr_w(pszFileName
), dwMode
);
391 dwMode
= STGM_READ
| STGM_SHARE_DENY_WRITE
;
392 r
= SHCreateStreamOnFileW(pszFileName
, dwMode
, &stm
);
395 r
= IPersistStream_Load(StreamThis
, stm
);
396 ShellLink_UpdatePath(This
->sPathRel
, pszFileName
, This
->sWorkDir
, &This
->sPath
);
397 IStream_Release( stm
);
399 /* update file path */
400 HeapFree(GetProcessHeap(), 0, This
->filepath
);
401 This
->filepath
= strdupW(pszFileName
);
403 This
->bDirty
= FALSE
;
405 TRACE("-- returning hr %08x\n", r
);
409 BOOL
run_winemenubuilder( const WCHAR
*args
)
411 static const WCHAR menubuilder
[] = {'\\','w','i','n','e','m','e','n','u','b','u','i','l','d','e','r','.','e','x','e',0};
415 PROCESS_INFORMATION pi
;
420 GetSystemDirectoryW( app
, MAX_PATH
- sizeof(menubuilder
)/sizeof(WCHAR
) );
421 strcatW( app
, menubuilder
);
423 len
= (strlenW( app
) + strlenW( args
) + 1) * sizeof(WCHAR
);
424 buffer
= HeapAlloc( GetProcessHeap(), 0, len
);
428 strcpyW( buffer
, app
);
429 strcatW( buffer
, args
);
431 TRACE("starting %s\n",debugstr_w(buffer
));
433 memset(&si
, 0, sizeof(si
));
436 Wow64DisableWow64FsRedirection( &redir
);
437 ret
= CreateProcessW( app
, buffer
, NULL
, NULL
, FALSE
, 0, NULL
, NULL
, &si
, &pi
);
438 Wow64RevertWow64FsRedirection( redir
);
440 HeapFree( GetProcessHeap(), 0, buffer
);
444 CloseHandle( pi
.hProcess
);
445 CloseHandle( pi
.hThread
);
451 static BOOL
StartLinkProcessor( LPCOLESTR szLink
)
453 static const WCHAR szFormat
[] = {' ','-','w',' ','"','%','s','"',0 };
458 len
= sizeof(szFormat
) + lstrlenW( szLink
) * sizeof(WCHAR
);
459 buffer
= HeapAlloc( GetProcessHeap(), 0, len
);
463 wsprintfW( buffer
, szFormat
, szLink
);
464 ret
= run_winemenubuilder( buffer
);
465 HeapFree( GetProcessHeap(), 0, buffer
);
469 static HRESULT WINAPI
IPersistFile_fnSave(IPersistFile
* iface
, LPCOLESTR pszFileName
, BOOL fRemember
)
471 IShellLinkImpl
*This
= impl_from_IPersistFile(iface
);
472 IPersistStream
*StreamThis
= (IPersistStream
*)&This
->lpvtblPersistStream
;
476 TRACE("(%p)->(%s)\n",This
,debugstr_w(pszFileName
));
481 r
= SHCreateStreamOnFileW( pszFileName
, STGM_READWRITE
| STGM_CREATE
| STGM_SHARE_EXCLUSIVE
, &stm
);
484 r
= IPersistStream_Save(StreamThis
, stm
, FALSE
);
485 IStream_Release( stm
);
489 StartLinkProcessor( pszFileName
);
491 /* update file path */
492 HeapFree(GetProcessHeap(), 0, This
->filepath
);
493 This
->filepath
= strdupW(pszFileName
);
495 This
->bDirty
= FALSE
;
499 DeleteFileW( pszFileName
);
500 WARN("Failed to create shortcut %s\n", debugstr_w(pszFileName
) );
507 static HRESULT WINAPI
IPersistFile_fnSaveCompleted(IPersistFile
* iface
, LPCOLESTR pszFileName
)
509 IShellLinkImpl
*This
= impl_from_IPersistFile(iface
);
510 FIXME("(%p)->(%s)\n",This
,debugstr_w(pszFileName
));
514 static HRESULT WINAPI
IPersistFile_fnGetCurFile(IPersistFile
* iface
, LPOLESTR
*filename
)
516 IShellLinkImpl
*This
= impl_from_IPersistFile(iface
);
519 TRACE("(%p)->(%p)\n", This
, filename
);
527 SHGetMalloc(&pMalloc
);
528 *filename
= IMalloc_Alloc(pMalloc
, (strlenW(This
->filepath
)+1)*sizeof(WCHAR
));
529 if (!*filename
) return E_OUTOFMEMORY
;
531 strcpyW(*filename
, This
->filepath
);
536 static const IPersistFileVtbl pfvt
=
538 IPersistFile_fnQueryInterface
,
539 IPersistFile_fnAddRef
,
540 IPersistFile_fnRelease
,
541 IPersistFile_fnGetClassID
,
542 IPersistFile_fnIsDirty
,
545 IPersistFile_fnSaveCompleted
,
546 IPersistFile_fnGetCurFile
549 /************************************************************************
550 * IPersistStream_QueryInterface
552 static HRESULT WINAPI
IPersistStream_fnQueryInterface(
553 IPersistStream
* iface
,
557 IShellLinkImpl
*This
= impl_from_IPersistStream(iface
);
558 return ShellLink_QueryInterface( This
, riid
, ppvObj
);
561 /************************************************************************
562 * IPersistStream_Release
564 static ULONG WINAPI
IPersistStream_fnRelease(
565 IPersistStream
* iface
)
567 IShellLinkImpl
*This
= impl_from_IPersistStream(iface
);
568 return IShellLinkA_Release((IShellLinkA
*)This
);
571 /************************************************************************
572 * IPersistStream_AddRef
574 static ULONG WINAPI
IPersistStream_fnAddRef(
575 IPersistStream
* iface
)
577 IShellLinkImpl
*This
= impl_from_IPersistStream(iface
);
578 return ShellLink_AddRef( This
);
581 /************************************************************************
582 * IPersistStream_GetClassID
585 static HRESULT WINAPI
IPersistStream_fnGetClassID(
586 IPersistStream
* iface
,
589 IShellLinkImpl
*This
= impl_from_IPersistStream(iface
);
590 return ShellLink_GetClassID( This
, pClassID
);
593 /************************************************************************
594 * IPersistStream_IsDirty (IPersistStream)
596 static HRESULT WINAPI
IPersistStream_fnIsDirty(
597 IPersistStream
* iface
)
599 IShellLinkImpl
*This
= impl_from_IPersistStream(iface
);
601 TRACE("(%p)\n", This
);
607 static HRESULT
Stream_LoadString( IStream
* stm
, BOOL unicode
, LPWSTR
*pstr
)
618 r
= IStream_Read(stm
, &len
, sizeof(len
), &count
);
619 if ( FAILED (r
) || ( count
!= sizeof(len
) ) )
623 len
*= sizeof (WCHAR
);
625 TRACE("reading %d\n", len
);
626 temp
= HeapAlloc(GetProcessHeap(), 0, len
+sizeof(WCHAR
));
628 return E_OUTOFMEMORY
;
630 r
= IStream_Read(stm
, temp
, len
, &count
);
631 if( FAILED (r
) || ( count
!= len
) )
633 HeapFree( GetProcessHeap(), 0, temp
);
637 TRACE("read %s\n", debugstr_an(temp
,len
));
639 /* convert to unicode if necessary */
642 count
= MultiByteToWideChar( CP_ACP
, 0, temp
, len
, NULL
, 0 );
643 str
= HeapAlloc( GetProcessHeap(), 0, (count
+1)*sizeof (WCHAR
) );
646 HeapFree( GetProcessHeap(), 0, temp
);
647 return E_OUTOFMEMORY
;
649 MultiByteToWideChar( CP_ACP
, 0, temp
, len
, str
, count
);
650 HeapFree( GetProcessHeap(), 0, temp
);
664 static HRESULT
Stream_ReadChunk( IStream
* stm
, LPVOID
*data
)
671 unsigned char data
[1];
676 r
= IStream_Read( stm
, &size
, sizeof(size
), &count
);
677 if( FAILED( r
) || count
!= sizeof(size
) )
680 chunk
= HeapAlloc( GetProcessHeap(), 0, size
);
682 return E_OUTOFMEMORY
;
685 r
= IStream_Read( stm
, chunk
->data
, size
- sizeof(size
), &count
);
686 if( FAILED( r
) || count
!= (size
- sizeof(size
)) )
688 HeapFree( GetProcessHeap(), 0, chunk
);
692 TRACE("Read %d bytes\n",chunk
->size
);
699 static BOOL
Stream_LoadVolume( LOCAL_VOLUME_INFO
*vol
, volume_info
*volume
)
701 const int label_sz
= sizeof volume
->label
/sizeof volume
->label
[0];
705 volume
->serial
= vol
->dwVolSerial
;
706 volume
->type
= vol
->dwType
;
708 if( !vol
->dwVolLabelOfs
)
710 if( vol
->dwSize
<= vol
->dwVolLabelOfs
)
712 len
= vol
->dwSize
- vol
->dwVolLabelOfs
;
715 label
+= vol
->dwVolLabelOfs
;
716 MultiByteToWideChar( CP_ACP
, 0, label
, len
, volume
->label
, label_sz
-1);
721 static LPWSTR
Stream_LoadPath( LPCSTR p
, DWORD maxlen
)
726 while( p
[len
] && (len
< maxlen
) )
729 wlen
= MultiByteToWideChar(CP_ACP
, 0, p
, len
, NULL
, 0);
730 path
= HeapAlloc(GetProcessHeap(), 0, (wlen
+1)*sizeof(WCHAR
));
731 MultiByteToWideChar(CP_ACP
, 0, p
, len
, path
, wlen
);
737 static HRESULT
Stream_LoadLocation( IStream
*stm
,
738 volume_info
*volume
, LPWSTR
*path
)
745 r
= Stream_ReadChunk( stm
, (LPVOID
*) &p
);
749 loc
= (LOCATION_INFO
*) p
;
750 if (loc
->dwTotalSize
< sizeof(LOCATION_INFO
))
752 HeapFree( GetProcessHeap(), 0, p
);
756 /* if there's valid local volume information, load it */
757 if( loc
->dwVolTableOfs
&&
758 ((loc
->dwVolTableOfs
+ sizeof(LOCAL_VOLUME_INFO
)) <= loc
->dwTotalSize
) )
760 LOCAL_VOLUME_INFO
*volume_info
;
762 volume_info
= (LOCAL_VOLUME_INFO
*) &p
[loc
->dwVolTableOfs
];
763 Stream_LoadVolume( volume_info
, volume
);
766 /* if there's a local path, load it */
767 n
= loc
->dwLocalPathOfs
;
768 if( n
&& (n
< loc
->dwTotalSize
) )
769 *path
= Stream_LoadPath( &p
[n
], loc
->dwTotalSize
- n
);
771 TRACE("type %d serial %08x name %s path %s\n", volume
->type
,
772 volume
->serial
, debugstr_w(volume
->label
), debugstr_w(*path
));
774 HeapFree( GetProcessHeap(), 0, p
);
779 * The format of the advertised shortcut info seems to be:
784 * 0 Length of the block (4 bytes, usually 0x314)
786 * 8 string data in ASCII
787 * 8+0x104 string data in UNICODE
789 * In the original Win32 implementation the buffers are not initialized
790 * to zero, so data trailing the string is random garbage.
792 static HRESULT
Stream_LoadAdvertiseInfo( IStream
* stm
, LPWSTR
*str
)
797 EXP_DARWIN_LINK buffer
;
801 r
= IStream_Read( stm
, &buffer
.dbh
.cbSize
, sizeof (DWORD
), &count
);
805 /* make sure that we read the size of the structure even on error */
806 size
= sizeof buffer
- sizeof (DWORD
);
807 if( buffer
.dbh
.cbSize
!= sizeof buffer
)
809 ERR("Ooops. This structure is not as expected...\n");
813 r
= IStream_Read( stm
, &buffer
.dbh
.dwSignature
, size
, &count
);
820 TRACE("magic %08x string = %s\n", buffer
.dbh
.dwSignature
, debugstr_w(buffer
.szwDarwinID
));
822 if( (buffer
.dbh
.dwSignature
&0xffff0000) != 0xa0000000 )
824 ERR("Unknown magic number %08x in advertised shortcut\n", buffer
.dbh
.dwSignature
);
828 *str
= HeapAlloc( GetProcessHeap(), 0,
829 (lstrlenW(buffer
.szwDarwinID
)+1) * sizeof(WCHAR
) );
830 lstrcpyW( *str
, buffer
.szwDarwinID
);
835 /************************************************************************
836 * IPersistStream_Load (IPersistStream)
838 static HRESULT WINAPI
IPersistStream_fnLoad(
839 IPersistStream
* iface
,
848 IShellLinkImpl
*This
= impl_from_IPersistStream(iface
);
850 TRACE("%p %p\n", This
, stm
);
853 return STG_E_INVALIDPOINTER
;
856 r
= IStream_Read(stm
, &hdr
, sizeof(hdr
), &dwBytesRead
);
860 if( dwBytesRead
!= sizeof(hdr
))
862 if( hdr
.dwSize
!= sizeof(hdr
))
864 if( !IsEqualIID(&hdr
.MagicGuid
, &CLSID_ShellLink
) )
867 /* free all the old stuff */
870 memset( &This
->volume
, 0, sizeof This
->volume
);
871 HeapFree(GetProcessHeap(), 0, This
->sPath
);
873 HeapFree(GetProcessHeap(), 0, This
->sDescription
);
874 This
->sDescription
= NULL
;
875 HeapFree(GetProcessHeap(), 0, This
->sPathRel
);
876 This
->sPathRel
= NULL
;
877 HeapFree(GetProcessHeap(), 0, This
->sWorkDir
);
878 This
->sWorkDir
= NULL
;
879 HeapFree(GetProcessHeap(), 0, This
->sArgs
);
881 HeapFree(GetProcessHeap(), 0, This
->sIcoPath
);
882 This
->sIcoPath
= NULL
;
883 HeapFree(GetProcessHeap(), 0, This
->sProduct
);
884 This
->sProduct
= NULL
;
885 HeapFree(GetProcessHeap(), 0, This
->sComponent
);
886 This
->sComponent
= NULL
;
888 This
->wHotKey
= (WORD
)hdr
.wHotKey
;
889 This
->iIcoNdx
= hdr
.nIcon
;
890 FileTimeToSystemTime (&hdr
.Time1
, &This
->time1
);
891 FileTimeToSystemTime (&hdr
.Time2
, &This
->time2
);
892 FileTimeToSystemTime (&hdr
.Time3
, &This
->time3
);
895 WCHAR sTemp
[MAX_PATH
];
896 GetDateFormatW(LOCALE_USER_DEFAULT
,DATE_SHORTDATE
, &This
->time1
,
897 NULL
, sTemp
, sizeof(sTemp
)/sizeof(*sTemp
));
898 TRACE("-- time1: %s\n", debugstr_w(sTemp
) );
899 GetDateFormatW(LOCALE_USER_DEFAULT
,DATE_SHORTDATE
, &This
->time2
,
900 NULL
, sTemp
, sizeof(sTemp
)/sizeof(*sTemp
));
901 TRACE("-- time2: %s\n", debugstr_w(sTemp
) );
902 GetDateFormatW(LOCALE_USER_DEFAULT
,DATE_SHORTDATE
, &This
->time3
,
903 NULL
, sTemp
, sizeof(sTemp
)/sizeof(*sTemp
));
904 TRACE("-- time3: %s\n", debugstr_w(sTemp
) );
907 /* load all the new stuff */
908 if( hdr
.dwFlags
& SLDF_HAS_ID_LIST
)
910 r
= ILLoadFromStream( stm
, &This
->pPidl
);
916 /* load the location information */
917 if( hdr
.dwFlags
& SLDF_HAS_LINK_INFO
)
918 r
= Stream_LoadLocation( stm
, &This
->volume
, &This
->sPath
);
922 unicode
= hdr
.dwFlags
& SLDF_UNICODE
;
923 if( hdr
.dwFlags
& SLDF_HAS_NAME
)
925 r
= Stream_LoadString( stm
, unicode
, &This
->sDescription
);
926 TRACE("Description -> %s\n",debugstr_w(This
->sDescription
));
931 if( hdr
.dwFlags
& SLDF_HAS_RELPATH
)
933 r
= Stream_LoadString( stm
, unicode
, &This
->sPathRel
);
934 TRACE("Relative Path-> %s\n",debugstr_w(This
->sPathRel
));
939 if( hdr
.dwFlags
& SLDF_HAS_WORKINGDIR
)
941 r
= Stream_LoadString( stm
, unicode
, &This
->sWorkDir
);
942 TRACE("Working Dir -> %s\n",debugstr_w(This
->sWorkDir
));
947 if( hdr
.dwFlags
& SLDF_HAS_ARGS
)
949 r
= Stream_LoadString( stm
, unicode
, &This
->sArgs
);
950 TRACE("Working Dir -> %s\n",debugstr_w(This
->sArgs
));
955 if( hdr
.dwFlags
& SLDF_HAS_ICONLOCATION
)
957 r
= Stream_LoadString( stm
, unicode
, &This
->sIcoPath
);
958 TRACE("Icon file -> %s\n",debugstr_w(This
->sIcoPath
));
963 if( hdr
.dwFlags
& SLDF_HAS_LOGO3ID
)
965 r
= Stream_LoadAdvertiseInfo( stm
, &This
->sProduct
);
966 TRACE("Product -> %s\n",debugstr_w(This
->sProduct
));
971 if( hdr
.dwFlags
& SLDF_HAS_DARWINID
)
973 r
= Stream_LoadAdvertiseInfo( stm
, &This
->sComponent
);
974 TRACE("Component -> %s\n",debugstr_w(This
->sComponent
));
979 r
= IStream_Read(stm
, &zero
, sizeof zero
, &dwBytesRead
);
980 if( FAILED( r
) || zero
|| dwBytesRead
!= sizeof zero
)
982 /* Some lnk files have extra data blocks starting with a
983 * DATABLOCK_HEADER. For instance EXP_SPECIAL_FOLDER and an unknown
984 * one with a 0xa0000003 signature. However these don't seem to matter
987 WARN("Last word was not zero\n");
999 /************************************************************************
1000 * Stream_WriteString
1002 * Helper function for IPersistStream_Save. Writes a unicode string
1003 * with terminating nul byte to a stream, preceded by the its length.
1005 static HRESULT
Stream_WriteString( IStream
* stm
, LPCWSTR str
)
1007 USHORT len
= lstrlenW( str
) + 1;
1011 r
= IStream_Write( stm
, &len
, sizeof(len
), &count
);
1015 len
*= sizeof(WCHAR
);
1017 r
= IStream_Write( stm
, str
, len
, &count
);
1024 /************************************************************************
1025 * Stream_WriteLocationInfo
1027 * Writes the location info to a stream
1029 * FIXME: One day we might want to write the network volume information
1030 * and the final path.
1031 * Figure out how Windows deals with unicode paths here.
1033 static HRESULT
Stream_WriteLocationInfo( IStream
* stm
, LPCWSTR path
,
1034 volume_info
*volume
)
1036 DWORD total_size
, path_size
, volume_info_size
, label_size
, final_path_size
;
1037 LOCAL_VOLUME_INFO
*vol
;
1039 LPSTR szLabel
, szPath
, szFinalPath
;
1043 TRACE("%p %s %p\n", stm
, debugstr_w(path
), volume
);
1045 /* figure out the size of everything */
1046 label_size
= WideCharToMultiByte( CP_ACP
, 0, volume
->label
, -1,
1047 NULL
, 0, NULL
, NULL
);
1048 path_size
= WideCharToMultiByte( CP_ACP
, 0, path
, -1,
1049 NULL
, 0, NULL
, NULL
);
1050 volume_info_size
= sizeof *vol
+ label_size
;
1051 final_path_size
= 1;
1052 total_size
= sizeof *loc
+ volume_info_size
+ path_size
+ final_path_size
;
1054 /* create pointers to everything */
1055 loc
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, total_size
);
1056 vol
= (LOCAL_VOLUME_INFO
*) &loc
[1];
1057 szLabel
= (LPSTR
) &vol
[1];
1058 szPath
= &szLabel
[label_size
];
1059 szFinalPath
= &szPath
[path_size
];
1061 /* fill in the location information header */
1062 loc
->dwTotalSize
= total_size
;
1063 loc
->dwHeaderSize
= sizeof (*loc
);
1065 loc
->dwVolTableOfs
= sizeof (*loc
);
1066 loc
->dwLocalPathOfs
= sizeof (*loc
) + volume_info_size
;
1067 loc
->dwNetworkVolTableOfs
= 0;
1068 loc
->dwFinalPathOfs
= sizeof (*loc
) + volume_info_size
+ path_size
;
1070 /* fill in the volume information */
1071 vol
->dwSize
= volume_info_size
;
1072 vol
->dwType
= volume
->type
;
1073 vol
->dwVolSerial
= volume
->serial
;
1074 vol
->dwVolLabelOfs
= sizeof (*vol
);
1076 /* copy in the strings */
1077 WideCharToMultiByte( CP_ACP
, 0, volume
->label
, -1,
1078 szLabel
, label_size
, NULL
, NULL
);
1079 WideCharToMultiByte( CP_ACP
, 0, path
, -1,
1080 szPath
, path_size
, NULL
, NULL
);
1083 hr
= IStream_Write( stm
, loc
, total_size
, &count
);
1084 HeapFree(GetProcessHeap(), 0, loc
);
1089 static EXP_DARWIN_LINK
* shelllink_build_darwinid( LPCWSTR string
, DWORD magic
)
1091 EXP_DARWIN_LINK
*buffer
;
1093 buffer
= LocalAlloc( LMEM_ZEROINIT
, sizeof *buffer
);
1094 buffer
->dbh
.cbSize
= sizeof *buffer
;
1095 buffer
->dbh
.dwSignature
= magic
;
1096 lstrcpynW( buffer
->szwDarwinID
, string
, MAX_PATH
);
1097 WideCharToMultiByte(CP_ACP
, 0, string
, -1, buffer
->szDarwinID
, MAX_PATH
, NULL
, NULL
);
1102 static HRESULT
Stream_WriteAdvertiseInfo( IStream
* stm
, LPCWSTR string
, DWORD magic
)
1104 EXP_DARWIN_LINK
*buffer
;
1109 buffer
= shelllink_build_darwinid( string
, magic
);
1111 return IStream_Write( stm
, buffer
, buffer
->dbh
.cbSize
, &count
);
1114 /************************************************************************
1115 * IPersistStream_Save (IPersistStream)
1117 * FIXME: makes assumptions about byte order
1119 static HRESULT WINAPI
IPersistStream_fnSave(
1120 IPersistStream
* iface
,
1129 IShellLinkImpl
*This
= impl_from_IPersistStream(iface
);
1131 TRACE("%p %p %x\n", This
, stm
, fClearDirty
);
1133 memset(&header
, 0, sizeof(header
));
1134 header
.dwSize
= sizeof(header
);
1135 header
.fStartup
= This
->iShowCmd
;
1136 header
.MagicGuid
= CLSID_ShellLink
;
1138 header
.wHotKey
= This
->wHotKey
;
1139 header
.nIcon
= This
->iIcoNdx
;
1140 header
.dwFlags
= SLDF_UNICODE
; /* strings are in unicode */
1142 header
.dwFlags
|= SLDF_HAS_ID_LIST
;
1144 header
.dwFlags
|= SLDF_HAS_LINK_INFO
;
1145 if( This
->sDescription
)
1146 header
.dwFlags
|= SLDF_HAS_NAME
;
1147 if( This
->sWorkDir
)
1148 header
.dwFlags
|= SLDF_HAS_WORKINGDIR
;
1150 header
.dwFlags
|= SLDF_HAS_ARGS
;
1151 if( This
->sIcoPath
)
1152 header
.dwFlags
|= SLDF_HAS_ICONLOCATION
;
1153 if( This
->sProduct
)
1154 header
.dwFlags
|= SLDF_HAS_LOGO3ID
;
1155 if( This
->sComponent
)
1156 header
.dwFlags
|= SLDF_HAS_DARWINID
;
1158 SystemTimeToFileTime ( &This
->time1
, &header
.Time1
);
1159 SystemTimeToFileTime ( &This
->time2
, &header
.Time2
);
1160 SystemTimeToFileTime ( &This
->time3
, &header
.Time3
);
1162 /* write the Shortcut header */
1163 r
= IStream_Write( stm
, &header
, sizeof(header
), &count
);
1166 ERR("Write failed at %d\n",__LINE__
);
1170 TRACE("Writing pidl\n");
1172 /* write the PIDL to the shortcut */
1175 r
= ILSaveToStream( stm
, This
->pPidl
);
1178 ERR("Failed to write PIDL at %d\n",__LINE__
);
1184 Stream_WriteLocationInfo( stm
, This
->sPath
, &This
->volume
);
1186 if( This
->sDescription
)
1187 r
= Stream_WriteString( stm
, This
->sDescription
);
1189 if( This
->sPathRel
)
1190 r
= Stream_WriteString( stm
, This
->sPathRel
);
1192 if( This
->sWorkDir
)
1193 r
= Stream_WriteString( stm
, This
->sWorkDir
);
1196 r
= Stream_WriteString( stm
, This
->sArgs
);
1198 if( This
->sIcoPath
)
1199 r
= Stream_WriteString( stm
, This
->sIcoPath
);
1201 if( This
->sProduct
)
1202 r
= Stream_WriteAdvertiseInfo( stm
, This
->sProduct
, EXP_SZ_ICON_SIG
);
1204 if( This
->sComponent
)
1205 r
= Stream_WriteAdvertiseInfo( stm
, This
->sComponent
, EXP_DARWIN_ID_SIG
);
1207 /* the last field is a single zero dword */
1209 r
= IStream_Write( stm
, &zero
, sizeof zero
, &count
);
1214 /************************************************************************
1215 * IPersistStream_GetSizeMax (IPersistStream)
1217 static HRESULT WINAPI
IPersistStream_fnGetSizeMax(
1218 IPersistStream
* iface
,
1219 ULARGE_INTEGER
* pcbSize
)
1221 IShellLinkImpl
*This
= impl_from_IPersistStream(iface
);
1223 TRACE("(%p)\n", This
);
1228 static const IPersistStreamVtbl psvt
=
1230 IPersistStream_fnQueryInterface
,
1231 IPersistStream_fnAddRef
,
1232 IPersistStream_fnRelease
,
1233 IPersistStream_fnGetClassID
,
1234 IPersistStream_fnIsDirty
,
1235 IPersistStream_fnLoad
,
1236 IPersistStream_fnSave
,
1237 IPersistStream_fnGetSizeMax
1240 /**************************************************************************
1241 * IShellLink_Constructor
1243 HRESULT WINAPI
IShellLink_Constructor( IUnknown
*pUnkOuter
,
1244 REFIID riid
, LPVOID
*ppv
)
1246 IShellLinkImpl
* sl
;
1249 TRACE("unkOut=%p riid=%s\n",pUnkOuter
, debugstr_guid(riid
));
1254 return CLASS_E_NOAGGREGATION
;
1255 sl
= LocalAlloc(LMEM_ZEROINIT
,sizeof(IShellLinkImpl
));
1257 return E_OUTOFMEMORY
;
1261 sl
->lpvtblw
= &slvtw
;
1262 sl
->lpvtblPersistFile
= &pfvt
;
1263 sl
->lpvtblPersistStream
= &psvt
;
1264 sl
->lpvtblShellLinkDataList
= &dlvt
;
1265 sl
->lpvtblShellExtInit
= &eivt
;
1266 sl
->lpvtblContextMenu
= &cmvt
;
1267 sl
->lpvtblObjectWithSite
= &owsvt
;
1268 sl
->iShowCmd
= SW_SHOWNORMAL
;
1272 sl
->filepath
= NULL
;
1274 TRACE("(%p)->()\n",sl
);
1276 r
= ShellLink_QueryInterface( sl
, riid
, ppv
);
1277 ShellLink_Release( sl
);
1282 static BOOL
SHELL_ExistsFileW(LPCWSTR path
)
1284 if (INVALID_FILE_ATTRIBUTES
== GetFileAttributesW(path
))
1289 /**************************************************************************
1290 * ShellLink_UpdatePath
1291 * update absolute path in sPath using relative path in sPathRel
1293 static HRESULT
ShellLink_UpdatePath(LPCWSTR sPathRel
, LPCWSTR path
, LPCWSTR sWorkDir
, LPWSTR
* psPath
)
1295 if (!path
|| !psPath
)
1296 return E_INVALIDARG
;
1298 if (!*psPath
&& sPathRel
) {
1299 WCHAR buffer
[2*MAX_PATH
], abs_path
[2*MAX_PATH
];
1300 LPWSTR final
= NULL
;
1302 /* first try if [directory of link file] + [relative path] finds an existing file */
1304 GetFullPathNameW( path
, MAX_PATH
*2, buffer
, &final
);
1307 lstrcpyW(final
, sPathRel
);
1311 if (SHELL_ExistsFileW(buffer
)) {
1312 if (!GetFullPathNameW(buffer
, MAX_PATH
, abs_path
, &final
))
1313 lstrcpyW(abs_path
, buffer
);
1315 /* try if [working directory] + [relative path] finds an existing file */
1317 lstrcpyW(buffer
, sWorkDir
);
1318 lstrcpyW(PathAddBackslashW(buffer
), sPathRel
);
1320 if (SHELL_ExistsFileW(buffer
))
1321 if (!GetFullPathNameW(buffer
, MAX_PATH
, abs_path
, &final
))
1322 lstrcpyW(abs_path
, buffer
);
1326 /* FIXME: This is even not enough - not all shell links can be resolved using this algorithm. */
1328 lstrcpyW(abs_path
, sPathRel
);
1330 *psPath
= HeapAlloc(GetProcessHeap(), 0, (lstrlenW(abs_path
)+1)*sizeof(WCHAR
));
1332 return E_OUTOFMEMORY
;
1334 lstrcpyW(*psPath
, abs_path
);
1340 /**************************************************************************
1341 * IShellLink_ConstructFromFile
1343 HRESULT WINAPI
IShellLink_ConstructFromFile( IUnknown
* pUnkOuter
, REFIID riid
,
1344 LPCITEMIDLIST pidl
, LPVOID
* ppv
)
1348 HRESULT hr
= IShellLink_Constructor(NULL
, riid
, (LPVOID
*)&psl
);
1350 if (SUCCEEDED(hr
)) {
1355 hr
= IShellLinkW_QueryInterface(psl
, &IID_IPersistFile
, (LPVOID
*)&ppf
);
1357 if (SUCCEEDED(hr
)) {
1358 WCHAR path
[MAX_PATH
];
1360 if (SHGetPathFromIDListW(pidl
, path
))
1361 hr
= IPersistFile_Load(ppf
, path
, 0);
1368 IPersistFile_Release(ppf
);
1372 IShellLinkW_Release(psl
);
1378 /**************************************************************************
1379 * IShellLinkA_QueryInterface
1381 static HRESULT WINAPI
IShellLinkA_fnQueryInterface( IShellLinkA
* iface
, REFIID riid
, LPVOID
*ppvObj
)
1383 IShellLinkImpl
*This
= (IShellLinkImpl
*)iface
;
1384 return ShellLink_QueryInterface( This
, riid
, ppvObj
);
1387 /******************************************************************************
1388 * IShellLinkA_AddRef
1390 static ULONG WINAPI
IShellLinkA_fnAddRef(IShellLinkA
* iface
)
1392 IShellLinkImpl
*This
= (IShellLinkImpl
*)iface
;
1393 return ShellLink_AddRef( This
);
1396 /******************************************************************************
1397 * IShellLinkA_Release
1399 static ULONG WINAPI
IShellLinkA_fnRelease(IShellLinkA
* iface
)
1401 IShellLinkImpl
*This
= (IShellLinkImpl
*)iface
;
1402 return ShellLink_Release( This
);
1405 static HRESULT WINAPI
IShellLinkA_fnGetPath(IShellLinkA
* iface
, LPSTR pszFile
,
1406 INT cchMaxPath
, WIN32_FIND_DATAA
*pfd
, DWORD fFlags
)
1408 IShellLinkImpl
*This
= (IShellLinkImpl
*)iface
;
1410 TRACE("(%p)->(pfile=%p len=%u find_data=%p flags=%u)(%s)\n",
1411 This
, pszFile
, cchMaxPath
, pfd
, fFlags
, debugstr_w(This
->sPath
));
1413 if (This
->sComponent
|| This
->sProduct
)
1419 WideCharToMultiByte( CP_ACP
, 0, This
->sPath
, -1,
1420 pszFile
, cchMaxPath
, NULL
, NULL
);
1422 if (pfd
) FIXME("(%p): WIN32_FIND_DATA is not yet filled.\n", This
);
1427 static HRESULT WINAPI
IShellLinkA_fnGetIDList(IShellLinkA
* iface
, LPITEMIDLIST
* ppidl
)
1429 IShellLinkImpl
*This
= (IShellLinkImpl
*)iface
;
1431 TRACE("(%p)->(ppidl=%p)\n",This
, ppidl
);
1433 return IShellLinkW_GetIDList((IShellLinkW
*)&(This
->lpvtblw
), ppidl
);
1436 static HRESULT WINAPI
IShellLinkA_fnSetIDList(IShellLinkA
* iface
, LPCITEMIDLIST pidl
)
1438 IShellLinkImpl
*This
= (IShellLinkImpl
*)iface
;
1440 TRACE("(%p)->(pidl=%p)\n",This
, pidl
);
1443 ILFree(This
->pPidl
);
1444 This
->pPidl
= ILClone (pidl
);
1445 This
->bDirty
= TRUE
;
1450 static HRESULT WINAPI
IShellLinkA_fnGetDescription(IShellLinkA
* iface
, LPSTR pszName
,INT cchMaxName
)
1452 IShellLinkImpl
*This
= (IShellLinkImpl
*)iface
;
1454 TRACE("(%p)->(%p len=%u)\n",This
, pszName
, cchMaxName
);
1458 if( This
->sDescription
)
1459 WideCharToMultiByte( CP_ACP
, 0, This
->sDescription
, -1,
1460 pszName
, cchMaxName
, NULL
, NULL
);
1465 static HRESULT WINAPI
IShellLinkA_fnSetDescription(IShellLinkA
* iface
, LPCSTR pszName
)
1467 IShellLinkImpl
*This
= (IShellLinkImpl
*)iface
;
1469 TRACE("(%p)->(pName=%s)\n", This
, pszName
);
1471 HeapFree(GetProcessHeap(), 0, This
->sDescription
);
1474 This
->sDescription
= HEAP_strdupAtoW( GetProcessHeap(), 0, pszName
);
1475 if ( !This
->sDescription
)
1476 return E_OUTOFMEMORY
;
1479 This
->sDescription
= NULL
;
1481 This
->bDirty
= TRUE
;
1486 static HRESULT WINAPI
IShellLinkA_fnGetWorkingDirectory(IShellLinkA
* iface
, LPSTR pszDir
,INT cchMaxPath
)
1488 IShellLinkImpl
*This
= (IShellLinkImpl
*)iface
;
1490 TRACE("(%p)->(%p len=%u)\n", This
, pszDir
, cchMaxPath
);
1494 if( This
->sWorkDir
)
1495 WideCharToMultiByte( CP_ACP
, 0, This
->sWorkDir
, -1,
1496 pszDir
, cchMaxPath
, NULL
, NULL
);
1501 static HRESULT WINAPI
IShellLinkA_fnSetWorkingDirectory(IShellLinkA
* iface
, LPCSTR pszDir
)
1503 IShellLinkImpl
*This
= (IShellLinkImpl
*)iface
;
1505 TRACE("(%p)->(dir=%s)\n",This
, pszDir
);
1507 HeapFree(GetProcessHeap(), 0, This
->sWorkDir
);
1508 This
->sWorkDir
= HEAP_strdupAtoW( GetProcessHeap(), 0, pszDir
);
1509 if ( !This
->sWorkDir
)
1510 return E_OUTOFMEMORY
;
1512 This
->bDirty
= TRUE
;
1517 static HRESULT WINAPI
IShellLinkA_fnGetArguments(IShellLinkA
* iface
, LPSTR pszArgs
,INT cchMaxPath
)
1519 IShellLinkImpl
*This
= (IShellLinkImpl
*)iface
;
1521 TRACE("(%p)->(%p len=%u)\n", This
, pszArgs
, cchMaxPath
);
1526 WideCharToMultiByte( CP_ACP
, 0, This
->sArgs
, -1,
1527 pszArgs
, cchMaxPath
, NULL
, NULL
);
1532 static HRESULT WINAPI
IShellLinkA_fnSetArguments(IShellLinkA
* iface
, LPCSTR pszArgs
)
1534 IShellLinkImpl
*This
= (IShellLinkImpl
*)iface
;
1536 TRACE("(%p)->(args=%s)\n",This
, pszArgs
);
1538 HeapFree(GetProcessHeap(), 0, This
->sArgs
);
1541 This
->sArgs
= HEAP_strdupAtoW( GetProcessHeap(), 0, pszArgs
);
1543 return E_OUTOFMEMORY
;
1545 else This
->sArgs
= NULL
;
1547 This
->bDirty
= TRUE
;
1552 static HRESULT WINAPI
IShellLinkA_fnGetHotkey(IShellLinkA
* iface
, WORD
*pwHotkey
)
1554 IShellLinkImpl
*This
= (IShellLinkImpl
*)iface
;
1556 TRACE("(%p)->(%p)(0x%08x)\n",This
, pwHotkey
, This
->wHotKey
);
1558 *pwHotkey
= This
->wHotKey
;
1563 static HRESULT WINAPI
IShellLinkA_fnSetHotkey(IShellLinkA
* iface
, WORD wHotkey
)
1565 IShellLinkImpl
*This
= (IShellLinkImpl
*)iface
;
1567 TRACE("(%p)->(hotkey=%x)\n",This
, wHotkey
);
1569 This
->wHotKey
= wHotkey
;
1570 This
->bDirty
= TRUE
;
1575 static HRESULT WINAPI
IShellLinkA_fnGetShowCmd(IShellLinkA
* iface
, INT
*piShowCmd
)
1577 IShellLinkImpl
*This
= (IShellLinkImpl
*)iface
;
1579 TRACE("(%p)->(%p)\n",This
, piShowCmd
);
1580 *piShowCmd
= This
->iShowCmd
;
1584 static HRESULT WINAPI
IShellLinkA_fnSetShowCmd(IShellLinkA
* iface
, INT iShowCmd
)
1586 IShellLinkImpl
*This
= (IShellLinkImpl
*)iface
;
1588 TRACE("(%p) %d\n",This
, iShowCmd
);
1590 This
->iShowCmd
= iShowCmd
;
1591 This
->bDirty
= TRUE
;
1596 static HRESULT
SHELL_PidlGeticonLocationA(IShellFolder
* psf
, LPCITEMIDLIST pidl
,
1597 LPSTR pszIconPath
, int cchIconPath
, int* piIcon
)
1599 LPCITEMIDLIST pidlLast
;
1601 HRESULT hr
= SHBindToParent(pidl
, &IID_IShellFolder
, (LPVOID
*)&psf
, &pidlLast
);
1603 if (SUCCEEDED(hr
)) {
1606 hr
= IShellFolder_GetUIObjectOf(psf
, 0, 1, &pidlLast
, &IID_IExtractIconA
, NULL
, (LPVOID
*)&pei
);
1608 if (SUCCEEDED(hr
)) {
1609 hr
= IExtractIconA_GetIconLocation(pei
, 0, pszIconPath
, MAX_PATH
, piIcon
, NULL
);
1611 IExtractIconA_Release(pei
);
1614 IShellFolder_Release(psf
);
1620 static HRESULT WINAPI
IShellLinkA_fnGetIconLocation(IShellLinkA
* iface
, LPSTR pszIconPath
,INT cchIconPath
,INT
*piIcon
)
1622 IShellLinkImpl
*This
= (IShellLinkImpl
*)iface
;
1624 TRACE("(%p)->(%p len=%u iicon=%p)\n", This
, pszIconPath
, cchIconPath
, piIcon
);
1627 *piIcon
= This
->iIcoNdx
;
1631 WideCharToMultiByte(CP_ACP
, 0, This
->sIcoPath
, -1, pszIconPath
, cchIconPath
, NULL
, NULL
);
1635 if (This
->pPidl
|| This
->sPath
)
1639 HRESULT hr
= SHGetDesktopFolder(&pdsk
);
1643 /* first look for an icon using the PIDL (if present) */
1645 hr
= SHELL_PidlGeticonLocationA(pdsk
, This
->pPidl
, pszIconPath
, cchIconPath
, piIcon
);
1649 /* if we couldn't find an icon yet, look for it using the file system path */
1650 if (FAILED(hr
) && This
->sPath
)
1654 hr
= IShellFolder_ParseDisplayName(pdsk
, 0, NULL
, This
->sPath
, NULL
, &pidl
, NULL
);
1656 if (SUCCEEDED(hr
)) {
1657 hr
= SHELL_PidlGeticonLocationA(pdsk
, pidl
, pszIconPath
, cchIconPath
, piIcon
);
1663 IShellFolder_Release(pdsk
);
1671 static HRESULT WINAPI
IShellLinkA_fnSetIconLocation(IShellLinkA
* iface
, LPCSTR pszIconPath
,INT iIcon
)
1673 IShellLinkImpl
*This
= (IShellLinkImpl
*)iface
;
1675 TRACE("(%p)->(path=%s iicon=%u)\n",This
, pszIconPath
, iIcon
);
1677 HeapFree(GetProcessHeap(), 0, This
->sIcoPath
);
1678 This
->sIcoPath
= HEAP_strdupAtoW(GetProcessHeap(), 0, pszIconPath
);
1679 if ( !This
->sIcoPath
)
1680 return E_OUTOFMEMORY
;
1682 This
->iIcoNdx
= iIcon
;
1683 This
->bDirty
= TRUE
;
1688 static HRESULT WINAPI
IShellLinkA_fnSetRelativePath(IShellLinkA
* iface
, LPCSTR pszPathRel
, DWORD dwReserved
)
1690 IShellLinkImpl
*This
= (IShellLinkImpl
*)iface
;
1692 TRACE("(%p)->(path=%s %x)\n",This
, pszPathRel
, dwReserved
);
1694 HeapFree(GetProcessHeap(), 0, This
->sPathRel
);
1695 This
->sPathRel
= HEAP_strdupAtoW(GetProcessHeap(), 0, pszPathRel
);
1696 This
->bDirty
= TRUE
;
1698 return ShellLink_UpdatePath(This
->sPathRel
, This
->sPath
, This
->sWorkDir
, &This
->sPath
);
1701 static HRESULT WINAPI
IShellLinkA_fnResolve(IShellLinkA
* iface
, HWND hwnd
, DWORD fFlags
)
1703 IShellLinkImpl
*This
= (IShellLinkImpl
*)iface
;
1705 TRACE("(%p)->(hwnd=%p flags=%x)\n",This
, hwnd
, fFlags
);
1707 return IShellLinkW_Resolve( (IShellLinkW
*)&(This
->lpvtblw
), hwnd
, fFlags
);
1710 static HRESULT WINAPI
IShellLinkA_fnSetPath(IShellLinkA
* iface
, LPCSTR pszFile
)
1714 IShellLinkImpl
*This
= (IShellLinkImpl
*)iface
;
1716 TRACE("(%p)->(path=%s)\n",This
, pszFile
);
1718 if (!pszFile
) return E_INVALIDARG
;
1720 str
= HEAP_strdupAtoW(GetProcessHeap(), 0, pszFile
);
1722 return E_OUTOFMEMORY
;
1724 r
= IShellLinkW_SetPath((IShellLinkW
*)&(This
->lpvtblw
), str
);
1725 HeapFree( GetProcessHeap(), 0, str
);
1730 /**************************************************************************
1731 * IShellLink Implementation
1734 static const IShellLinkAVtbl slvt
=
1736 IShellLinkA_fnQueryInterface
,
1737 IShellLinkA_fnAddRef
,
1738 IShellLinkA_fnRelease
,
1739 IShellLinkA_fnGetPath
,
1740 IShellLinkA_fnGetIDList
,
1741 IShellLinkA_fnSetIDList
,
1742 IShellLinkA_fnGetDescription
,
1743 IShellLinkA_fnSetDescription
,
1744 IShellLinkA_fnGetWorkingDirectory
,
1745 IShellLinkA_fnSetWorkingDirectory
,
1746 IShellLinkA_fnGetArguments
,
1747 IShellLinkA_fnSetArguments
,
1748 IShellLinkA_fnGetHotkey
,
1749 IShellLinkA_fnSetHotkey
,
1750 IShellLinkA_fnGetShowCmd
,
1751 IShellLinkA_fnSetShowCmd
,
1752 IShellLinkA_fnGetIconLocation
,
1753 IShellLinkA_fnSetIconLocation
,
1754 IShellLinkA_fnSetRelativePath
,
1755 IShellLinkA_fnResolve
,
1756 IShellLinkA_fnSetPath
1760 /**************************************************************************
1761 * IShellLinkW_fnQueryInterface
1763 static HRESULT WINAPI
IShellLinkW_fnQueryInterface(
1764 IShellLinkW
* iface
, REFIID riid
, LPVOID
*ppvObj
)
1766 IShellLinkImpl
*This
= impl_from_IShellLinkW(iface
);
1767 return ShellLink_QueryInterface( This
, riid
, ppvObj
);
1770 /******************************************************************************
1771 * IShellLinkW_fnAddRef
1773 static ULONG WINAPI
IShellLinkW_fnAddRef(IShellLinkW
* iface
)
1775 IShellLinkImpl
*This
= impl_from_IShellLinkW(iface
);
1776 return ShellLink_AddRef( This
);
1779 /******************************************************************************
1780 * IShellLinkW_fnRelease
1782 static ULONG WINAPI
IShellLinkW_fnRelease(IShellLinkW
* iface
)
1784 IShellLinkImpl
*This
= impl_from_IShellLinkW(iface
);
1785 return ShellLink_Release( This
);
1788 static HRESULT WINAPI
IShellLinkW_fnGetPath(IShellLinkW
* iface
, LPWSTR pszFile
,INT cchMaxPath
, WIN32_FIND_DATAW
*pfd
, DWORD fFlags
)
1790 IShellLinkImpl
*This
= impl_from_IShellLinkW(iface
);
1792 TRACE("(%p)->(pfile=%p len=%u find_data=%p flags=%u)(%s)\n",
1793 This
, pszFile
, cchMaxPath
, pfd
, fFlags
, debugstr_w(This
->sPath
));
1795 if (This
->sComponent
|| This
->sProduct
)
1801 lstrcpynW( pszFile
, This
->sPath
, cchMaxPath
);
1803 if (pfd
) FIXME("(%p): WIN32_FIND_DATA is not yet filled.\n", This
);
1808 static HRESULT WINAPI
IShellLinkW_fnGetIDList(IShellLinkW
* iface
, LPITEMIDLIST
* ppidl
)
1810 IShellLinkImpl
*This
= impl_from_IShellLinkW(iface
);
1812 TRACE("(%p)->(ppidl=%p)\n",This
, ppidl
);
1819 *ppidl
= ILClone(This
->pPidl
);
1823 static HRESULT WINAPI
IShellLinkW_fnSetIDList(IShellLinkW
* iface
, LPCITEMIDLIST pidl
)
1825 IShellLinkImpl
*This
= impl_from_IShellLinkW(iface
);
1827 TRACE("(%p)->(pidl=%p)\n",This
, pidl
);
1830 ILFree( This
->pPidl
);
1831 This
->pPidl
= ILClone( pidl
);
1835 This
->bDirty
= TRUE
;
1840 static HRESULT WINAPI
IShellLinkW_fnGetDescription(IShellLinkW
* iface
, LPWSTR pszName
,INT cchMaxName
)
1842 IShellLinkImpl
*This
= impl_from_IShellLinkW(iface
);
1844 TRACE("(%p)->(%p len=%u)\n",This
, pszName
, cchMaxName
);
1847 if( This
->sDescription
)
1848 lstrcpynW( pszName
, This
->sDescription
, cchMaxName
);
1853 static HRESULT WINAPI
IShellLinkW_fnSetDescription(IShellLinkW
* iface
, LPCWSTR pszName
)
1855 IShellLinkImpl
*This
= impl_from_IShellLinkW(iface
);
1857 TRACE("(%p)->(desc=%s)\n",This
, debugstr_w(pszName
));
1859 HeapFree(GetProcessHeap(), 0, This
->sDescription
);
1862 This
->sDescription
= HeapAlloc( GetProcessHeap(), 0,
1863 (lstrlenW( pszName
)+1)*sizeof(WCHAR
) );
1864 if ( !This
->sDescription
)
1865 return E_OUTOFMEMORY
;
1867 lstrcpyW( This
->sDescription
, pszName
);
1870 This
->sDescription
= NULL
;
1871 This
->bDirty
= TRUE
;
1876 static HRESULT WINAPI
IShellLinkW_fnGetWorkingDirectory(IShellLinkW
* iface
, LPWSTR pszDir
,INT cchMaxPath
)
1878 IShellLinkImpl
*This
= impl_from_IShellLinkW(iface
);
1880 TRACE("(%p)->(%p len %u)\n", This
, pszDir
, cchMaxPath
);
1884 if( This
->sWorkDir
)
1885 lstrcpynW( pszDir
, This
->sWorkDir
, cchMaxPath
);
1890 static HRESULT WINAPI
IShellLinkW_fnSetWorkingDirectory(IShellLinkW
* iface
, LPCWSTR pszDir
)
1892 IShellLinkImpl
*This
= impl_from_IShellLinkW(iface
);
1894 TRACE("(%p)->(dir=%s)\n",This
, debugstr_w(pszDir
));
1896 HeapFree(GetProcessHeap(), 0, This
->sWorkDir
);
1897 This
->sWorkDir
= HeapAlloc( GetProcessHeap(), 0,
1898 (lstrlenW( pszDir
)+1)*sizeof (WCHAR
) );
1899 if ( !This
->sWorkDir
)
1900 return E_OUTOFMEMORY
;
1901 lstrcpyW( This
->sWorkDir
, pszDir
);
1902 This
->bDirty
= TRUE
;
1907 static HRESULT WINAPI
IShellLinkW_fnGetArguments(IShellLinkW
* iface
, LPWSTR pszArgs
,INT cchMaxPath
)
1909 IShellLinkImpl
*This
= impl_from_IShellLinkW(iface
);
1911 TRACE("(%p)->(%p len=%u)\n", This
, pszArgs
, cchMaxPath
);
1916 lstrcpynW( pszArgs
, This
->sArgs
, cchMaxPath
);
1921 static HRESULT WINAPI
IShellLinkW_fnSetArguments(IShellLinkW
* iface
, LPCWSTR pszArgs
)
1923 IShellLinkImpl
*This
= impl_from_IShellLinkW(iface
);
1925 TRACE("(%p)->(args=%s)\n",This
, debugstr_w(pszArgs
));
1927 HeapFree(GetProcessHeap(), 0, This
->sArgs
);
1930 This
->sArgs
= HeapAlloc( GetProcessHeap(), 0,
1931 (lstrlenW( pszArgs
)+1)*sizeof (WCHAR
) );
1933 return E_OUTOFMEMORY
;
1934 lstrcpyW( This
->sArgs
, pszArgs
);
1936 else This
->sArgs
= NULL
;
1938 This
->bDirty
= TRUE
;
1943 static HRESULT WINAPI
IShellLinkW_fnGetHotkey(IShellLinkW
* iface
, WORD
*pwHotkey
)
1945 IShellLinkImpl
*This
= impl_from_IShellLinkW(iface
);
1947 TRACE("(%p)->(%p)\n",This
, pwHotkey
);
1949 *pwHotkey
=This
->wHotKey
;
1954 static HRESULT WINAPI
IShellLinkW_fnSetHotkey(IShellLinkW
* iface
, WORD wHotkey
)
1956 IShellLinkImpl
*This
= impl_from_IShellLinkW(iface
);
1958 TRACE("(%p)->(hotkey=%x)\n",This
, wHotkey
);
1960 This
->wHotKey
= wHotkey
;
1961 This
->bDirty
= TRUE
;
1966 static HRESULT WINAPI
IShellLinkW_fnGetShowCmd(IShellLinkW
* iface
, INT
*piShowCmd
)
1968 IShellLinkImpl
*This
= impl_from_IShellLinkW(iface
);
1970 TRACE("(%p)->(%p)\n",This
, piShowCmd
);
1972 *piShowCmd
= This
->iShowCmd
;
1977 static HRESULT WINAPI
IShellLinkW_fnSetShowCmd(IShellLinkW
* iface
, INT iShowCmd
)
1979 IShellLinkImpl
*This
= impl_from_IShellLinkW(iface
);
1981 This
->iShowCmd
= iShowCmd
;
1982 This
->bDirty
= TRUE
;
1987 static HRESULT
SHELL_PidlGeticonLocationW(IShellFolder
* psf
, LPCITEMIDLIST pidl
,
1988 LPWSTR pszIconPath
, int cchIconPath
, int* piIcon
)
1990 LPCITEMIDLIST pidlLast
;
1992 HRESULT hr
= SHBindToParent(pidl
, &IID_IShellFolder
, (LPVOID
*)&psf
, &pidlLast
);
1994 if (SUCCEEDED(hr
)) {
1997 hr
= IShellFolder_GetUIObjectOf(psf
, 0, 1, &pidlLast
, &IID_IExtractIconW
, NULL
, (LPVOID
*)&pei
);
1999 if (SUCCEEDED(hr
)) {
2000 hr
= IExtractIconW_GetIconLocation(pei
, 0, pszIconPath
, MAX_PATH
, piIcon
, NULL
);
2002 IExtractIconW_Release(pei
);
2005 IShellFolder_Release(psf
);
2011 static HRESULT WINAPI
IShellLinkW_fnGetIconLocation(IShellLinkW
* iface
, LPWSTR pszIconPath
,INT cchIconPath
,INT
*piIcon
)
2013 IShellLinkImpl
*This
= impl_from_IShellLinkW(iface
);
2015 TRACE("(%p)->(%p len=%u iicon=%p)\n", This
, pszIconPath
, cchIconPath
, piIcon
);
2018 *piIcon
= This
->iIcoNdx
;
2022 lstrcpynW(pszIconPath
, This
->sIcoPath
, cchIconPath
);
2026 if (This
->pPidl
|| This
->sPath
)
2030 HRESULT hr
= SHGetDesktopFolder(&pdsk
);
2034 /* first look for an icon using the PIDL (if present) */
2036 hr
= SHELL_PidlGeticonLocationW(pdsk
, This
->pPidl
, pszIconPath
, cchIconPath
, piIcon
);
2040 /* if we couldn't find an icon yet, look for it using the file system path */
2041 if (FAILED(hr
) && This
->sPath
)
2045 hr
= IShellFolder_ParseDisplayName(pdsk
, 0, NULL
, This
->sPath
, NULL
, &pidl
, NULL
);
2049 hr
= SHELL_PidlGeticonLocationW(pdsk
, pidl
, pszIconPath
, cchIconPath
, piIcon
);
2055 IShellFolder_Release(pdsk
);
2062 static HRESULT WINAPI
IShellLinkW_fnSetIconLocation(IShellLinkW
* iface
, LPCWSTR pszIconPath
,INT iIcon
)
2064 IShellLinkImpl
*This
= impl_from_IShellLinkW(iface
);
2066 TRACE("(%p)->(path=%s iicon=%u)\n",This
, debugstr_w(pszIconPath
), iIcon
);
2068 HeapFree(GetProcessHeap(), 0, This
->sIcoPath
);
2069 This
->sIcoPath
= HeapAlloc( GetProcessHeap(), 0,
2070 (lstrlenW( pszIconPath
)+1)*sizeof (WCHAR
) );
2071 if ( !This
->sIcoPath
)
2072 return E_OUTOFMEMORY
;
2073 lstrcpyW( This
->sIcoPath
, pszIconPath
);
2075 This
->iIcoNdx
= iIcon
;
2076 This
->bDirty
= TRUE
;
2081 static HRESULT WINAPI
IShellLinkW_fnSetRelativePath(IShellLinkW
* iface
, LPCWSTR pszPathRel
, DWORD dwReserved
)
2083 IShellLinkImpl
*This
= impl_from_IShellLinkW(iface
);
2085 TRACE("(%p)->(path=%s %x)\n",This
, debugstr_w(pszPathRel
), dwReserved
);
2087 HeapFree(GetProcessHeap(), 0, This
->sPathRel
);
2088 This
->sPathRel
= HeapAlloc( GetProcessHeap(), 0,
2089 (lstrlenW( pszPathRel
)+1) * sizeof (WCHAR
) );
2090 if ( !This
->sPathRel
)
2091 return E_OUTOFMEMORY
;
2092 lstrcpyW( This
->sPathRel
, pszPathRel
);
2093 This
->bDirty
= TRUE
;
2095 return ShellLink_UpdatePath(This
->sPathRel
, This
->sPath
, This
->sWorkDir
, &This
->sPath
);
2098 static HRESULT WINAPI
IShellLinkW_fnResolve(IShellLinkW
* iface
, HWND hwnd
, DWORD fFlags
)
2103 IShellLinkImpl
*This
= impl_from_IShellLinkW(iface
);
2105 TRACE("(%p)->(hwnd=%p flags=%x)\n",This
, hwnd
, fFlags
);
2107 /*FIXME: use IResolveShellLink interface */
2109 if (!This
->sPath
&& This
->pPidl
) {
2110 WCHAR buffer
[MAX_PATH
];
2112 bSuccess
= SHGetPathFromIDListW(This
->pPidl
, buffer
);
2114 if (bSuccess
&& *buffer
) {
2115 This
->sPath
= HeapAlloc(GetProcessHeap(), 0, (lstrlenW(buffer
)+1)*sizeof(WCHAR
));
2117 return E_OUTOFMEMORY
;
2119 lstrcpyW(This
->sPath
, buffer
);
2121 This
->bDirty
= TRUE
;
2123 hr
= S_OK
; /* don't report an error occurred while just caching information */
2126 if (!This
->sIcoPath
&& This
->sPath
) {
2127 This
->sIcoPath
= HeapAlloc(GetProcessHeap(), 0, (lstrlenW(This
->sPath
)+1)*sizeof(WCHAR
));
2128 if (!This
->sIcoPath
)
2129 return E_OUTOFMEMORY
;
2131 lstrcpyW(This
->sIcoPath
, This
->sPath
);
2134 This
->bDirty
= TRUE
;
2140 static LPWSTR
ShellLink_GetAdvertisedArg(LPCWSTR str
)
2149 p
= strchrW( str
, ':' );
2153 ret
= HeapAlloc( GetProcessHeap(), 0, sizeof(WCHAR
)*(len
+1));
2156 memcpy( ret
, str
, sizeof(WCHAR
)*len
);
2161 static HRESULT
ShellLink_SetAdvertiseInfo(IShellLinkImpl
*This
, LPCWSTR str
)
2163 LPCWSTR szComponent
= NULL
, szProduct
= NULL
, p
;
2171 /* each segment must start with two colons */
2172 if( str
[0] != ':' || str
[1] != ':' )
2175 /* the last segment is just two colons */
2180 /* there must be a colon straight after a guid */
2181 p
= strchrW( str
, ':' );
2188 /* get the guid, and check it's validly formatted */
2189 memcpy( szGuid
, str
, sizeof(WCHAR
)*len
);
2191 r
= CLSIDFromString( szGuid
, &guid
);
2196 /* match it up to a guid that we care about */
2197 if( IsEqualGUID( &guid
, &SHELL32_AdvtShortcutComponent
) && !szComponent
)
2199 else if( IsEqualGUID( &guid
, &SHELL32_AdvtShortcutProduct
) && !szProduct
)
2204 /* skip to the next field */
2205 str
= strchrW( str
, ':' );
2210 /* we have to have a component for an advertised shortcut */
2214 This
->sComponent
= ShellLink_GetAdvertisedArg( szComponent
);
2215 This
->sProduct
= ShellLink_GetAdvertisedArg( szProduct
);
2217 TRACE("Component = %s\n", debugstr_w(This
->sComponent
));
2218 TRACE("Product = %s\n", debugstr_w(This
->sProduct
));
2223 static BOOL
ShellLink_GetVolumeInfo(LPCWSTR path
, volume_info
*volume
)
2225 const int label_sz
= sizeof volume
->label
/sizeof volume
->label
[0];
2226 WCHAR drive
[4] = { path
[0], ':', '\\', 0 };
2229 volume
->type
= GetDriveTypeW(drive
);
2230 r
= GetVolumeInformationW(drive
, volume
->label
, label_sz
,
2231 &volume
->serial
, NULL
, NULL
, NULL
, 0);
2232 TRACE("r = %d type %d serial %08x name %s\n", r
,
2233 volume
->type
, volume
->serial
, debugstr_w(volume
->label
));
2237 static HRESULT WINAPI
IShellLinkW_fnSetPath(IShellLinkW
* iface
, LPCWSTR pszFile
)
2239 IShellLinkImpl
*This
= impl_from_IShellLinkW(iface
);
2240 WCHAR buffer
[MAX_PATH
];
2241 LPWSTR fname
, unquoted
= NULL
;
2245 TRACE("(%p)->(path=%s)\n",This
, debugstr_w(pszFile
));
2247 if (!pszFile
) return E_INVALIDARG
;
2249 /* quotes at the ends of the string are stripped */
2250 len
= lstrlenW(pszFile
);
2251 if (pszFile
[0] == '"' && pszFile
[len
-1] == '"')
2253 unquoted
= strdupW(pszFile
);
2254 PathUnquoteSpacesW(unquoted
);
2258 /* any other quote marks are invalid */
2259 if (strchrW(pszFile
, '"'))
2261 HeapFree(GetProcessHeap(), 0, unquoted
);
2265 HeapFree(GetProcessHeap(), 0, This
->sPath
);
2268 HeapFree(GetProcessHeap(), 0, This
->sComponent
);
2269 This
->sComponent
= NULL
;
2272 ILFree(This
->pPidl
);
2275 if (S_OK
!= ShellLink_SetAdvertiseInfo( This
, pszFile
))
2277 if (*pszFile
== '\0')
2279 else if (!GetFullPathNameW(pszFile
, MAX_PATH
, buffer
, &fname
))
2281 else if(!PathFileExistsW(buffer
) &&
2282 !SearchPathW(NULL
, pszFile
, NULL
, MAX_PATH
, buffer
, NULL
))
2285 This
->pPidl
= SHSimpleIDListFromPathW(pszFile
);
2286 ShellLink_GetVolumeInfo(buffer
, &This
->volume
);
2288 This
->sPath
= HeapAlloc( GetProcessHeap(), 0,
2289 (lstrlenW( buffer
)+1) * sizeof (WCHAR
) );
2292 HeapFree(GetProcessHeap(), 0, unquoted
);
2293 return E_OUTOFMEMORY
;
2296 lstrcpyW(This
->sPath
, buffer
);
2298 This
->bDirty
= TRUE
;
2299 HeapFree(GetProcessHeap(), 0, unquoted
);
2304 /**************************************************************************
2305 * IShellLinkW Implementation
2308 static const IShellLinkWVtbl slvtw
=
2310 IShellLinkW_fnQueryInterface
,
2311 IShellLinkW_fnAddRef
,
2312 IShellLinkW_fnRelease
,
2313 IShellLinkW_fnGetPath
,
2314 IShellLinkW_fnGetIDList
,
2315 IShellLinkW_fnSetIDList
,
2316 IShellLinkW_fnGetDescription
,
2317 IShellLinkW_fnSetDescription
,
2318 IShellLinkW_fnGetWorkingDirectory
,
2319 IShellLinkW_fnSetWorkingDirectory
,
2320 IShellLinkW_fnGetArguments
,
2321 IShellLinkW_fnSetArguments
,
2322 IShellLinkW_fnGetHotkey
,
2323 IShellLinkW_fnSetHotkey
,
2324 IShellLinkW_fnGetShowCmd
,
2325 IShellLinkW_fnSetShowCmd
,
2326 IShellLinkW_fnGetIconLocation
,
2327 IShellLinkW_fnSetIconLocation
,
2328 IShellLinkW_fnSetRelativePath
,
2329 IShellLinkW_fnResolve
,
2330 IShellLinkW_fnSetPath
2333 static HRESULT WINAPI
2334 ShellLink_DataList_QueryInterface( IShellLinkDataList
* iface
, REFIID riid
, void** ppvObject
)
2336 IShellLinkImpl
*This
= impl_from_IShellLinkDataList(iface
);
2337 return IShellLinkA_QueryInterface((IShellLinkA
*)This
, riid
, ppvObject
);
2341 ShellLink_DataList_AddRef( IShellLinkDataList
* iface
)
2343 IShellLinkImpl
*This
= impl_from_IShellLinkDataList(iface
);
2344 return IShellLinkA_AddRef((IShellLinkA
*)This
);
2348 ShellLink_DataList_Release( IShellLinkDataList
* iface
)
2350 IShellLinkImpl
*This
= impl_from_IShellLinkDataList(iface
);
2351 return ShellLink_Release( This
);
2354 static HRESULT WINAPI
2355 ShellLink_AddDataBlock( IShellLinkDataList
* iface
, void* pDataBlock
)
2357 FIXME("(%p)->(%p): stub\n", iface
, pDataBlock
);
2361 static HRESULT WINAPI
2362 ShellLink_CopyDataBlock( IShellLinkDataList
* iface
, DWORD dwSig
, void** ppDataBlock
)
2364 IShellLinkImpl
*This
= impl_from_IShellLinkDataList(iface
);
2365 LPVOID block
= NULL
;
2368 TRACE("%p %08x %p\n", iface
, dwSig
, ppDataBlock
);
2372 case EXP_DARWIN_ID_SIG
:
2373 if (!This
->sComponent
)
2375 block
= shelllink_build_darwinid( This
->sComponent
, dwSig
);
2378 case EXP_SZ_LINK_SIG
:
2379 case NT_CONSOLE_PROPS_SIG
:
2380 case NT_FE_CONSOLE_PROPS_SIG
:
2381 case EXP_SPECIAL_FOLDER_SIG
:
2382 case EXP_SZ_ICON_SIG
:
2383 FIXME("valid but unhandled datablock %08x\n", dwSig
);
2386 ERR("unknown datablock %08x\n", dwSig
);
2388 *ppDataBlock
= block
;
2392 static HRESULT WINAPI
2393 ShellLink_RemoveDataBlock( IShellLinkDataList
* iface
, DWORD dwSig
)
2395 FIXME("(%p)->(%u): stub\n", iface
, dwSig
);
2399 static HRESULT WINAPI
2400 ShellLink_GetFlags( IShellLinkDataList
* iface
, DWORD
* pdwFlags
)
2402 IShellLinkImpl
*This
= impl_from_IShellLinkDataList(iface
);
2405 FIXME("(%p)->(%p): partially implemented\n", This
, pdwFlags
);
2407 /* FIXME: add more */
2409 flags
|= SLDF_HAS_ARGS
;
2410 if (This
->sComponent
)
2411 flags
|= SLDF_HAS_DARWINID
;
2413 flags
|= SLDF_HAS_ICONLOCATION
;
2415 flags
|= SLDF_HAS_LOGO3ID
;
2417 flags
|= SLDF_HAS_ID_LIST
;
2424 static HRESULT WINAPI
2425 ShellLink_SetFlags( IShellLinkDataList
* iface
, DWORD dwFlags
)
2427 FIXME("(%p)->(%u): stub\n", iface
, dwFlags
);
2431 static const IShellLinkDataListVtbl dlvt
=
2433 ShellLink_DataList_QueryInterface
,
2434 ShellLink_DataList_AddRef
,
2435 ShellLink_DataList_Release
,
2436 ShellLink_AddDataBlock
,
2437 ShellLink_CopyDataBlock
,
2438 ShellLink_RemoveDataBlock
,
2443 static HRESULT WINAPI
2444 ShellLink_ExtInit_QueryInterface( IShellExtInit
* iface
, REFIID riid
, void** ppvObject
)
2446 IShellLinkImpl
*This
= impl_from_IShellExtInit(iface
);
2447 return IShellLinkA_QueryInterface((IShellLinkA
*)This
, riid
, ppvObject
);
2451 ShellLink_ExtInit_AddRef( IShellExtInit
* iface
)
2453 IShellLinkImpl
*This
= impl_from_IShellExtInit(iface
);
2454 return IShellLinkA_AddRef((IShellLinkA
*)This
);
2458 ShellLink_ExtInit_Release( IShellExtInit
* iface
)
2460 IShellLinkImpl
*This
= impl_from_IShellExtInit(iface
);
2461 return ShellLink_Release( This
);
2464 /**************************************************************************
2465 * ShellLink implementation of IShellExtInit::Initialize()
2467 * Loads the shelllink from the dataobject the shell is pointing to.
2469 static HRESULT WINAPI
2470 ShellLink_ExtInit_Initialize( IShellExtInit
* iface
, LPCITEMIDLIST pidlFolder
,
2471 IDataObject
*pdtobj
, HKEY hkeyProgID
)
2473 IShellLinkImpl
*This
= impl_from_IShellExtInit(iface
);
2479 TRACE("%p %p %p %p\n", This
, pidlFolder
, pdtobj
, hkeyProgID
);
2484 format
.cfFormat
= CF_HDROP
;
2486 format
.dwAspect
= DVASPECT_CONTENT
;
2488 format
.tymed
= TYMED_HGLOBAL
;
2490 if( FAILED( IDataObject_GetData( pdtobj
, &format
, &stgm
) ) )
2493 count
= DragQueryFileW( stgm
.u
.hGlobal
, -1, NULL
, 0 );
2498 count
= DragQueryFileW( stgm
.u
.hGlobal
, 0, NULL
, 0 );
2500 path
= HeapAlloc( GetProcessHeap(), 0, count
*sizeof(WCHAR
) );
2503 IPersistFile
*pf
= (IPersistFile
*) &This
->lpvtblPersistFile
;
2505 count
= DragQueryFileW( stgm
.u
.hGlobal
, 0, path
, count
);
2506 r
= IPersistFile_Load( pf
, path
, 0 );
2507 HeapFree( GetProcessHeap(), 0, path
);
2510 ReleaseStgMedium( &stgm
);
2515 static const IShellExtInitVtbl eivt
=
2517 ShellLink_ExtInit_QueryInterface
,
2518 ShellLink_ExtInit_AddRef
,
2519 ShellLink_ExtInit_Release
,
2520 ShellLink_ExtInit_Initialize
2523 static HRESULT WINAPI
2524 ShellLink_ContextMenu_QueryInterface( IContextMenu
* iface
, REFIID riid
, void** ppvObject
)
2526 IShellLinkImpl
*This
= impl_from_IContextMenu(iface
);
2527 return IShellLinkA_QueryInterface((IShellLinkA
*)This
, riid
, ppvObject
);
2531 ShellLink_ContextMenu_AddRef( IContextMenu
* iface
)
2533 IShellLinkImpl
*This
= impl_from_IContextMenu(iface
);
2534 return IShellLinkA_AddRef((IShellLinkA
*)This
);
2538 ShellLink_ContextMenu_Release( IContextMenu
* iface
)
2540 IShellLinkImpl
*This
= impl_from_IContextMenu(iface
);
2541 return ShellLink_Release( This
);
2544 static HRESULT WINAPI
2545 ShellLink_QueryContextMenu( IContextMenu
* iface
, HMENU hmenu
, UINT indexMenu
,
2546 UINT idCmdFirst
, UINT idCmdLast
, UINT uFlags
)
2548 IShellLinkImpl
*This
= impl_from_IContextMenu(iface
);
2549 static WCHAR szOpen
[] = { 'O','p','e','n',0 };
2553 TRACE("%p %p %u %u %u %u\n", This
,
2554 hmenu
, indexMenu
, idCmdFirst
, idCmdLast
, uFlags
);
2557 return E_INVALIDARG
;
2559 memset( &mii
, 0, sizeof mii
);
2560 mii
.cbSize
= sizeof mii
;
2561 mii
.fMask
= MIIM_TYPE
| MIIM_ID
| MIIM_STATE
;
2562 mii
.dwTypeData
= szOpen
;
2563 mii
.cch
= strlenW( mii
.dwTypeData
);
2564 mii
.wID
= idCmdFirst
+ id
++;
2565 mii
.fState
= MFS_DEFAULT
| MFS_ENABLED
;
2566 mii
.fType
= MFT_STRING
;
2567 if (!InsertMenuItemW( hmenu
, indexMenu
, TRUE
, &mii
))
2571 return MAKE_HRESULT( SEVERITY_SUCCESS
, 0, id
);
2575 shelllink_get_msi_component_path( LPWSTR component
)
2580 r
= CommandLineFromMsiDescriptor( component
, NULL
, &sz
);
2581 if (r
!= ERROR_SUCCESS
)
2585 path
= HeapAlloc( GetProcessHeap(), 0, sz
*sizeof(WCHAR
) );
2586 r
= CommandLineFromMsiDescriptor( component
, path
, &sz
);
2587 if (r
!= ERROR_SUCCESS
)
2589 HeapFree( GetProcessHeap(), 0, path
);
2593 TRACE("returning %s\n", debugstr_w( path
) );
2598 static HRESULT WINAPI
2599 ShellLink_InvokeCommand( IContextMenu
* iface
, LPCMINVOKECOMMANDINFO lpici
)
2601 IShellLinkImpl
*This
= impl_from_IContextMenu(iface
);
2602 static const WCHAR szOpen
[] = { 'O','p','e','n',0 };
2603 SHELLEXECUTEINFOW sei
;
2604 HWND hwnd
= NULL
; /* FIXME: get using interface set from IObjectWithSite */
2609 TRACE("%p %p\n", This
, lpici
);
2611 if ( lpici
->cbSize
< sizeof (CMINVOKECOMMANDINFO
) )
2612 return E_INVALIDARG
;
2614 if ( lpici
->lpVerb
!= MAKEINTRESOURCEA(This
->iIdOpen
) )
2616 ERR("Unknown id %p != %d\n", lpici
->lpVerb
, This
->iIdOpen
);
2617 return E_INVALIDARG
;
2620 r
= IShellLinkW_Resolve( (IShellLinkW
*)&(This
->lpvtblw
), hwnd
, 0 );
2624 if ( This
->sComponent
)
2626 path
= shelllink_get_msi_component_path( This
->sComponent
);
2631 path
= strdupW( This
->sPath
);
2633 if ( lpici
->cbSize
== sizeof (CMINVOKECOMMANDINFOEX
) &&
2634 ( lpici
->fMask
& CMIC_MASK_UNICODE
) )
2636 LPCMINVOKECOMMANDINFOEX iciex
= (LPCMINVOKECOMMANDINFOEX
) lpici
;
2640 len
+= lstrlenW( This
->sArgs
);
2641 if ( iciex
->lpParametersW
)
2642 len
+= lstrlenW( iciex
->lpParametersW
);
2644 args
= HeapAlloc( GetProcessHeap(), 0, len
*sizeof(WCHAR
) );
2647 lstrcatW( args
, This
->sArgs
);
2648 if ( iciex
->lpParametersW
)
2650 static const WCHAR space
[] = { ' ', 0 };
2651 lstrcatW( args
, space
);
2652 lstrcatW( args
, iciex
->lpParametersW
);
2656 memset( &sei
, 0, sizeof sei
);
2657 sei
.cbSize
= sizeof sei
;
2658 sei
.fMask
= SEE_MASK_UNICODE
| (lpici
->fMask
& (SEE_MASK_NOASYNC
|SEE_MASK_ASYNCOK
|SEE_MASK_FLAG_NO_UI
));
2660 sei
.nShow
= This
->iShowCmd
;
2661 sei
.lpIDList
= This
->pPidl
;
2662 sei
.lpDirectory
= This
->sWorkDir
;
2663 sei
.lpParameters
= args
;
2664 sei
.lpVerb
= szOpen
;
2666 if( ShellExecuteExW( &sei
) )
2671 HeapFree( GetProcessHeap(), 0, args
);
2672 HeapFree( GetProcessHeap(), 0, path
);
2677 static HRESULT WINAPI
2678 ShellLink_GetCommandString( IContextMenu
* iface
, UINT_PTR idCmd
, UINT uType
,
2679 UINT
* pwReserved
, LPSTR pszName
, UINT cchMax
)
2681 IShellLinkImpl
*This
= impl_from_IContextMenu(iface
);
2683 FIXME("(%p)->(%lu %u %p %p %u): stub\n", This
,
2684 idCmd
, uType
, pwReserved
, pszName
, cchMax
);
2689 static const IContextMenuVtbl cmvt
=
2691 ShellLink_ContextMenu_QueryInterface
,
2692 ShellLink_ContextMenu_AddRef
,
2693 ShellLink_ContextMenu_Release
,
2694 ShellLink_QueryContextMenu
,
2695 ShellLink_InvokeCommand
,
2696 ShellLink_GetCommandString
2699 static HRESULT WINAPI
2700 ShellLink_ObjectWithSite_QueryInterface( IObjectWithSite
* iface
, REFIID riid
, void** ppvObject
)
2702 IShellLinkImpl
*This
= impl_from_IObjectWithSite(iface
);
2703 return ShellLink_QueryInterface( This
, riid
, ppvObject
);
2707 ShellLink_ObjectWithSite_AddRef( IObjectWithSite
* iface
)
2709 IShellLinkImpl
*This
= impl_from_IObjectWithSite(iface
);
2710 return ShellLink_AddRef( This
);
2714 ShellLink_ObjectWithSite_Release( IObjectWithSite
* iface
)
2716 IShellLinkImpl
*This
= impl_from_IObjectWithSite(iface
);
2717 return ShellLink_Release( This
);
2720 static HRESULT WINAPI
2721 ShellLink_GetSite( IObjectWithSite
*iface
, REFIID iid
, void ** ppvSite
)
2723 IShellLinkImpl
*This
= impl_from_IObjectWithSite(iface
);
2725 TRACE("%p %s %p\n", This
, debugstr_guid( iid
), ppvSite
);
2729 return IUnknown_QueryInterface( This
->site
, iid
, ppvSite
);
2732 static HRESULT WINAPI
2733 ShellLink_SetSite( IObjectWithSite
*iface
, IUnknown
*punk
)
2735 IShellLinkImpl
*This
= impl_from_IObjectWithSite(iface
);
2737 TRACE("%p %p\n", iface
, punk
);
2740 IUnknown_AddRef( punk
);
2746 static const IObjectWithSiteVtbl owsvt
=
2748 ShellLink_ObjectWithSite_QueryInterface
,
2749 ShellLink_ObjectWithSite_AddRef
,
2750 ShellLink_ObjectWithSite_Release
,