At least print message if we're not returning requested data.
[wine.git] / dlls / shell32 / shelllink.c
blob163a3cfdc9ae6c6cd508943064838e929221e034
1 /*
3 * Copyright 1997 Marcus Meissner
4 * Copyright 1998 Juergen Schmied
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 * NOTES
21 * Nearly complete informations about the binary formats
22 * of .lnk files available at http://www.wotsit.org
26 #include "config.h"
27 #include "wine/port.h"
29 #include <ctype.h>
30 #include <string.h>
31 #include <stdarg.h>
32 #include <stdio.h>
33 #ifdef HAVE_UNISTD_H
34 # include <unistd.h>
35 #endif
36 #include <errno.h>
37 #include <limits.h>
38 #ifdef HAVE_SYS_WAIT_H
39 # include <sys/wait.h>
40 #endif
41 #include "wine/debug.h"
42 #include "winerror.h"
43 #include "windef.h"
44 #include "winbase.h"
45 #include "winnls.h"
46 #include "winreg.h"
48 #include "winuser.h"
49 #include "wingdi.h"
50 #include "shlobj.h"
51 #include "undocshell.h"
53 #include "pidl.h"
54 #include "shell32_main.h"
55 #include "shlguid.h"
56 #include "shlwapi.h"
58 WINE_DEFAULT_DEBUG_CHANNEL(shell);
60 /* link file formats */
62 /* flag1: lnk elements: simple link has 0x0B */
63 #define SCF_PIDL 1
64 #define SCF_NORMAL 2
65 #define SCF_DESCRIPTION 4
66 #define SCF_RELATIVE 8
67 #define SCF_WORKDIR 0x10
68 #define SCF_ARGS 0x20
69 #define SCF_CUSTOMICON 0x40
70 #define SCF_UNICODE 0x80
72 #include "pshpack1.h"
74 typedef struct _LINK_HEADER
76 DWORD dwSize; /* 0x00 size of the header - 0x4c */
77 GUID MagicGuid; /* 0x04 is CLSID_ShellLink */
78 DWORD dwFlags; /* 0x14 describes elements following */
79 DWORD dwFileAttr; /* 0x18 attributes of the target file */
80 FILETIME Time1; /* 0x1c */
81 FILETIME Time2; /* 0x24 */
82 FILETIME Time3; /* 0x2c */
83 DWORD dwFileLength; /* 0x34 File length */
84 DWORD nIcon; /* 0x38 icon number */
85 DWORD fStartup; /* 0x3c startup type */
86 DWORD wHotKey; /* 0x40 hotkey */
87 DWORD Unknown5; /* 0x44 */
88 DWORD Unknown6; /* 0x48 */
89 } LINK_HEADER, * PLINK_HEADER;
91 #define SHLINK_LOCAL 0
92 #define SHLINK_REMOTE 1
94 typedef struct _LOCATION_INFO
96 DWORD dwTotalSize;
97 DWORD dwHeaderSize;
98 DWORD dwFlags;
99 DWORD dwVolTableOfs;
100 DWORD dwLocalPathOfs;
101 DWORD dwNetworkVolTableOfs;
102 DWORD dwFinalPathOfs;
103 } LOCATION_INFO;
105 typedef struct _LOCAL_VOLUME_INFO
107 DWORD dwSize;
108 DWORD dwType;
109 DWORD dwVolSerial;
110 DWORD dwVolLabelOfs;
111 } LOCAL_VOLUME_INFO;
113 #include "poppack.h"
115 static IShellLinkAVtbl slvt;
116 static IShellLinkWVtbl slvtw;
117 static IPersistFileVtbl pfvt;
118 static IPersistStreamVtbl psvt;
120 /* IShellLink Implementation */
122 typedef struct
124 IShellLinkAVtbl *lpVtbl;
125 DWORD ref;
127 IShellLinkWVtbl *lpvtblw;
128 IPersistFileVtbl *lpvtblPersistFile;
129 IPersistStreamVtbl *lpvtblPersistStream;
131 /* data structures according to the informations in the link */
132 LPITEMIDLIST pPidl;
133 WORD wHotKey;
134 SYSTEMTIME time1;
135 SYSTEMTIME time2;
136 SYSTEMTIME time3;
138 DWORD iShowCmd;
139 LPWSTR sIcoPath;
140 INT iIcoNdx;
141 LPWSTR sPath;
142 LPWSTR sArgs;
143 LPWSTR sWorkDir;
144 LPWSTR sDescription;
145 LPWSTR sPathRel;
147 BOOL bDirty;
148 } IShellLinkImpl;
150 #define _IShellLinkW_Offset ((int)(&(((IShellLinkImpl*)0)->lpvtblw)))
151 #define _ICOM_THIS_From_IShellLinkW(class, name) class* This = (class*)(((char*)name)-_IShellLinkW_Offset)
153 #define _IPersistFile_Offset ((int)(&(((IShellLinkImpl*)0)->lpvtblPersistFile)))
154 #define _ICOM_THIS_From_IPersistFile(class, name) class* This = (class*)(((char*)name)-_IPersistFile_Offset)
156 #define _IPersistStream_Offset ((int)(&(((IShellLinkImpl*)0)->lpvtblPersistStream)))
157 #define _ICOM_THIS_From_IPersistStream(class, name) class* This = (class*)(((char*)name)-_IPersistStream_Offset)
159 static HRESULT ShellLink_UpdatePath(LPWSTR sPathRel, LPCWSTR path, LPCWSTR sWorkDir, LPWSTR* psPath);
161 /* strdup on the process heap */
162 inline static LPWSTR HEAP_strdupAtoW( HANDLE heap, DWORD flags, LPCSTR str)
164 INT len = MultiByteToWideChar( CP_ACP, 0, str, -1, NULL, 0 );
165 LPWSTR p = HeapAlloc( heap, flags, len*sizeof (WCHAR) );
166 if( !p )
167 return p;
168 MultiByteToWideChar( CP_ACP, 0, str, -1, p, len );
169 return p;
173 /**************************************************************************
174 * IPersistFile_QueryInterface
176 static HRESULT WINAPI IPersistFile_fnQueryInterface(
177 IPersistFile* iface,
178 REFIID riid,
179 LPVOID *ppvObj)
181 _ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface);
183 TRACE("(%p)\n",This);
185 return IShellLinkA_QueryInterface((IShellLinkA*)This, riid, ppvObj);
188 /******************************************************************************
189 * IPersistFile_AddRef
191 static ULONG WINAPI IPersistFile_fnAddRef(IPersistFile* iface)
193 _ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface);
195 TRACE("(%p)->(count=%lu)\n",This,This->ref);
197 return IShellLinkA_AddRef((IShellLinkA*)This);
199 /******************************************************************************
200 * IPersistFile_Release
202 static ULONG WINAPI IPersistFile_fnRelease(IPersistFile* iface)
204 _ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface);
206 TRACE("(%p)->(count=%lu)\n",This,This->ref);
208 return IShellLinkA_Release((IShellLinkA*)This);
211 static HRESULT WINAPI IPersistFile_fnGetClassID(IPersistFile* iface, CLSID *pClassID)
213 _ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface);
214 FIXME("(%p)\n",This);
215 return NOERROR;
217 static HRESULT WINAPI IPersistFile_fnIsDirty(IPersistFile* iface)
219 _ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface);
221 TRACE("(%p)\n",This);
223 if (This->bDirty)
224 return S_OK;
226 return S_FALSE;
228 static HRESULT WINAPI IPersistFile_fnLoad(IPersistFile* iface, LPCOLESTR pszFileName, DWORD dwMode)
230 _ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface);
231 IPersistStream *StreamThis = (IPersistStream *)&This->lpvtblPersistStream;
232 HRESULT r;
233 IStream *stm;
235 TRACE("(%p, %s)\n",This, debugstr_w(pszFileName));
237 r = CreateStreamOnFile(pszFileName, dwMode, &stm);
238 if( SUCCEEDED( r ) )
240 r = IPersistStream_Load(StreamThis, stm);
241 ShellLink_UpdatePath(This->sPathRel, pszFileName, This->sWorkDir, &This->sPath);
242 IStream_Release( stm );
243 This->bDirty = FALSE;
246 return r;
249 static BOOL StartLinkProcessor( LPCOLESTR szLink )
251 static const WCHAR szFormat[] = {'w','i','n','e','m','e','n','u','b','u','i','l','d','e','r','.','e','x','e',
252 ' ','-','r',' ','"','%','s','"',0 };
253 LONG len;
254 LPWSTR buffer;
255 STARTUPINFOW si;
256 PROCESS_INFORMATION pi;
258 len = sizeof(szFormat) + lstrlenW( szLink ) * sizeof(WCHAR);
259 buffer = HeapAlloc( GetProcessHeap(), 0, len );
260 if( !buffer )
261 return FALSE;
263 wsprintfW( buffer, szFormat, szLink );
265 TRACE("starting %s\n",debugstr_w(buffer));
267 memset(&si, 0, sizeof(si));
268 si.cb = sizeof(si);
269 if (!CreateProcessW( NULL, buffer, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi)) return FALSE;
271 /* wait for a while to throttle the creation of linker processes */
272 if( WAIT_OBJECT_0 != WaitForSingleObject( pi.hProcess, 10000 ) )
273 WARN("Timed out waiting for shell linker\n");
275 CloseHandle( pi.hProcess );
276 CloseHandle( pi.hThread );
278 return TRUE;
281 static HRESULT WINAPI IPersistFile_fnSave(IPersistFile* iface, LPCOLESTR pszFileName, BOOL fRemember)
283 _ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface);
284 IPersistStream *StreamThis = (IPersistStream *)&This->lpvtblPersistStream;
285 HRESULT r;
286 IStream *stm;
288 TRACE("(%p)->(%s)\n",This,debugstr_w(pszFileName));
290 if (!pszFileName || !This->sPath)
291 return E_FAIL;
293 r = CreateStreamOnFile(pszFileName, STGM_READWRITE | STGM_CREATE, &stm);
294 if( SUCCEEDED( r ) )
296 r = IPersistStream_Save(StreamThis, stm, FALSE);
297 IStream_Release( stm );
299 if( SUCCEEDED( r ) )
301 StartLinkProcessor( pszFileName );
303 This->bDirty = FALSE;
305 else
307 DeleteFileW( pszFileName );
308 WARN("Failed to create shortcut %s\n", debugstr_w(pszFileName) );
312 return r;
315 static HRESULT WINAPI IPersistFile_fnSaveCompleted(IPersistFile* iface, LPCOLESTR pszFileName)
317 _ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface);
318 FIXME("(%p)->(%s)\n",This,debugstr_w(pszFileName));
319 return NOERROR;
321 static HRESULT WINAPI IPersistFile_fnGetCurFile(IPersistFile* iface, LPOLESTR *ppszFileName)
323 _ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface);
324 FIXME("(%p)\n",This);
325 return NOERROR;
328 static IPersistFileVtbl pfvt =
330 IPersistFile_fnQueryInterface,
331 IPersistFile_fnAddRef,
332 IPersistFile_fnRelease,
333 IPersistFile_fnGetClassID,
334 IPersistFile_fnIsDirty,
335 IPersistFile_fnLoad,
336 IPersistFile_fnSave,
337 IPersistFile_fnSaveCompleted,
338 IPersistFile_fnGetCurFile
341 /************************************************************************
342 * IPersistStream_QueryInterface
344 static HRESULT WINAPI IPersistStream_fnQueryInterface(
345 IPersistStream* iface,
346 REFIID riid,
347 VOID** ppvoid)
349 _ICOM_THIS_From_IPersistStream(IShellLinkImpl, iface);
351 TRACE("(%p)\n",This);
353 return IShellLinkA_QueryInterface((IShellLinkA*)This, riid, ppvoid);
356 /************************************************************************
357 * IPersistStream_Release
359 static ULONG WINAPI IPersistStream_fnRelease(
360 IPersistStream* iface)
362 _ICOM_THIS_From_IPersistStream(IShellLinkImpl, iface);
364 TRACE("(%p)\n",This);
366 return IShellLinkA_Release((IShellLinkA*)This);
369 /************************************************************************
370 * IPersistStream_AddRef
372 static ULONG WINAPI IPersistStream_fnAddRef(
373 IPersistStream* iface)
375 _ICOM_THIS_From_IPersistStream(IShellLinkImpl, iface);
377 TRACE("(%p)\n",This);
379 return IShellLinkA_AddRef((IShellLinkA*)This);
382 /************************************************************************
383 * IPersistStream_GetClassID
386 static HRESULT WINAPI IPersistStream_fnGetClassID(
387 IPersistStream* iface,
388 CLSID* pClassID)
390 _ICOM_THIS_From_IPersistStream(IShellLinkImpl, iface);
392 TRACE("(%p)\n", This);
394 if (pClassID==0)
395 return E_POINTER;
397 /* memcpy(pClassID, &CLSID_???, sizeof(CLSID_???)); */
399 return S_OK;
402 /************************************************************************
403 * IPersistStream_IsDirty (IPersistStream)
405 static HRESULT WINAPI IPersistStream_fnIsDirty(
406 IPersistStream* iface)
408 _ICOM_THIS_From_IPersistStream(IShellLinkImpl, iface);
410 TRACE("(%p)\n", This);
412 return S_OK;
416 static HRESULT Stream_LoadString( IStream* stm, BOOL unicode, LPWSTR *pstr )
418 DWORD count;
419 USHORT len;
420 LPVOID temp;
421 LPWSTR str;
422 HRESULT r;
424 TRACE("%p\n", stm);
426 count = 0;
427 r = IStream_Read(stm, &len, sizeof(len), &count);
428 if ( FAILED (r) || ( count != sizeof(len) ) )
429 return E_FAIL;
431 if( unicode )
432 len *= sizeof (WCHAR);
434 TRACE("reading %d\n", len);
435 temp = HeapAlloc(GetProcessHeap(), 0, len+sizeof(WCHAR));
436 if( !temp )
437 return E_OUTOFMEMORY;
438 count = 0;
439 r = IStream_Read(stm, temp, len, &count);
440 if( FAILED (r) || ( count != len ) )
442 HeapFree( GetProcessHeap(), 0, temp );
443 return E_FAIL;
446 TRACE("read %s\n", debugstr_an(temp,len));
448 /* convert to unicode if necessary */
449 if( !unicode )
451 count = MultiByteToWideChar( CP_ACP, 0, (LPSTR) temp, len, NULL, 0 );
452 str = HeapAlloc( GetProcessHeap(), 0, (count+1)*sizeof (WCHAR) );
453 if( str )
454 MultiByteToWideChar( CP_ACP, 0, (LPSTR) temp, len, str, count );
455 HeapFree( GetProcessHeap(), 0, temp );
457 else
459 count /= 2;
460 str = (LPWSTR) temp;
462 str[count] = 0;
464 *pstr = str;
466 return S_OK;
469 static HRESULT Stream_LoadLocation( IStream* stm )
471 DWORD size;
472 ULONG count;
473 HRESULT r;
474 LOCATION_INFO *loc;
476 TRACE("%p\n",stm);
478 r = IStream_Read( stm, &size, sizeof(size), &count );
479 if( FAILED( r ) )
480 return r;
481 if( count != sizeof(loc->dwTotalSize) )
482 return E_FAIL;
484 loc = HeapAlloc( GetProcessHeap(), 0, size );
485 if( ! loc )
486 return E_OUTOFMEMORY;
488 r = IStream_Read( stm, &loc->dwHeaderSize, size-sizeof(size), &count );
489 if( FAILED( r ) )
490 goto end;
491 if( count != (size - sizeof(size)) )
493 r = E_FAIL;
494 goto end;
496 loc->dwTotalSize = size;
498 TRACE("Read %ld bytes\n",count);
500 /* FIXME: do something useful with it */
501 HeapFree( GetProcessHeap(), 0, loc );
503 return S_OK;
504 end:
505 HeapFree( GetProcessHeap(), 0, loc );
506 return r;
509 /************************************************************************
510 * IPersistStream_Load (IPersistStream)
512 static HRESULT WINAPI IPersistStream_fnLoad(
513 IPersistStream* iface,
514 IStream* stm)
516 LINK_HEADER hdr;
517 ULONG dwBytesRead;
518 BOOL unicode;
519 WCHAR sTemp[MAX_PATH];
520 HRESULT r;
522 _ICOM_THIS_From_IPersistStream(IShellLinkImpl, iface);
524 TRACE("(%p)(%p)\n", This, stm);
526 if( !stm )
527 return STG_E_INVALIDPOINTER;
529 dwBytesRead = 0;
530 r = IStream_Read(stm, &hdr, sizeof(hdr), &dwBytesRead);
531 if( FAILED( r ) )
532 return r;
534 if( dwBytesRead != sizeof(hdr))
535 return E_FAIL;
536 if( hdr.dwSize != sizeof(hdr))
537 return E_FAIL;
538 if( !IsEqualIID(&hdr.MagicGuid, &CLSID_ShellLink) )
539 return E_FAIL;
541 /* if( hdr.dwFlags & SCF_PIDL ) */ /* FIXME: seems to always have a PIDL */
543 r = ILLoadFromStream( stm, &This->pPidl );
544 if( FAILED( r ) )
545 return r;
547 This->wHotKey = (WORD)hdr.wHotKey;
548 This->iIcoNdx = hdr.nIcon;
549 FileTimeToSystemTime (&hdr.Time1, &This->time1);
550 FileTimeToSystemTime (&hdr.Time2, &This->time2);
551 FileTimeToSystemTime (&hdr.Time3, &This->time3);
552 #if 1
553 GetDateFormatW(LOCALE_USER_DEFAULT,DATE_SHORTDATE,&This->time1, NULL, sTemp, 256);
554 TRACE("-- time1: %s\n", debugstr_w(sTemp) );
555 GetDateFormatW(LOCALE_USER_DEFAULT,DATE_SHORTDATE,&This->time2, NULL, sTemp, 256);
556 TRACE("-- time1: %s\n", debugstr_w(sTemp) );
557 GetDateFormatW(LOCALE_USER_DEFAULT,DATE_SHORTDATE,&This->time3, NULL, sTemp, 256);
558 TRACE("-- time1: %s\n", debugstr_w(sTemp) );
559 pdump (This->pPidl);
560 #endif
561 if( hdr.dwFlags & SCF_NORMAL )
562 r = Stream_LoadLocation( stm );
563 if( FAILED( r ) )
564 goto end;
565 unicode = hdr.dwFlags & SCF_UNICODE;
566 if( hdr.dwFlags & SCF_DESCRIPTION )
568 r = Stream_LoadString( stm, unicode, &This->sDescription );
569 TRACE("Description -> %s\n",debugstr_w(This->sDescription));
571 if( FAILED( r ) )
572 goto end;
574 if( hdr.dwFlags & SCF_RELATIVE )
576 r = Stream_LoadString( stm, unicode, &This->sPathRel );
577 TRACE("Relative Path-> %s\n",debugstr_w(This->sPathRel));
579 if( FAILED( r ) )
580 goto end;
582 if( hdr.dwFlags & SCF_WORKDIR )
584 r = Stream_LoadString( stm, unicode, &This->sWorkDir );
585 TRACE("Working Dir -> %s\n",debugstr_w(This->sWorkDir));
587 if( FAILED( r ) )
588 goto end;
590 if( hdr.dwFlags & SCF_ARGS )
592 r = Stream_LoadString( stm, unicode, &This->sArgs );
593 TRACE("Working Dir -> %s\n",debugstr_w(This->sArgs));
595 if( FAILED( r ) )
596 goto end;
598 if( hdr.dwFlags & SCF_CUSTOMICON )
600 r = Stream_LoadString( stm, unicode, &This->sIcoPath );
601 TRACE("Icon file -> %s\n",debugstr_w(This->sIcoPath));
603 if( FAILED( r ) )
604 goto end;
606 TRACE("OK\n");
608 pdump (This->pPidl);
610 return S_OK;
611 end:
612 return r;
615 /************************************************************************
616 * Stream_WriteString
618 * Helper function for IPersistStream_Save. Writes a unicode string
619 * with terminating nul byte to a stream, preceded by the its length.
621 static HRESULT Stream_WriteString( IStream* stm, LPCWSTR str )
623 USHORT len = lstrlenW( str ) + 1;
624 DWORD count;
625 HRESULT r;
627 r = IStream_Write( stm, &len, sizeof(len), &count );
628 if( FAILED( r ) )
629 return r;
631 len *= sizeof(WCHAR);
633 r = IStream_Write( stm, str, len, &count );
634 if( FAILED( r ) )
635 return r;
637 return S_OK;
640 static HRESULT Stream_WriteLocationInfo( IStream* stm, LPCWSTR filename )
642 LOCATION_INFO loc;
643 ULONG count;
645 FIXME("writing empty location info\n");
647 memset( &loc, 0, sizeof(loc) );
648 loc.dwTotalSize = sizeof(loc) - sizeof(loc.dwTotalSize);
650 /* FIXME: fill this in */
652 return IStream_Write( stm, &loc, loc.dwTotalSize, &count );
655 /************************************************************************
656 * IPersistStream_Save (IPersistStream)
658 * FIXME: makes assumptions about byte order
660 static HRESULT WINAPI IPersistStream_fnSave(
661 IPersistStream* iface,
662 IStream* stm,
663 BOOL fClearDirty)
665 static const WCHAR wOpen[] = {'o','p','e','n',0};
667 LINK_HEADER header;
668 WCHAR exePath[MAX_PATH];
669 ULONG count;
670 HRESULT r;
672 _ICOM_THIS_From_IPersistStream(IShellLinkImpl, iface);
674 TRACE("(%p) %p %x\n", This, stm, fClearDirty);
676 *exePath = '\0';
678 if (This->sPath)
680 SHELL_FindExecutable(NULL, This->sPath, wOpen, exePath, MAX_PATH, NULL, NULL, NULL, NULL);
682 * windows can create lnk files to executables that do not exist yet
683 * so if the executable does not exist the just trust the path they
684 * gave us
686 if( !*exePath ) strcpyW(exePath,This->sPath);
689 /* if there's no PIDL, generate one */
690 if( ! This->pPidl ) This->pPidl = ILCreateFromPathW(exePath);
692 memset(&header, 0, sizeof(header));
693 header.dwSize = sizeof(header);
694 memcpy(&header.MagicGuid, &CLSID_ShellLink, sizeof(header.MagicGuid) );
696 header.wHotKey = This->wHotKey;
697 header.nIcon = This->iIcoNdx;
698 header.dwFlags = SCF_UNICODE; /* strings are in unicode */
699 header.dwFlags |= SCF_NORMAL; /* how do we determine this ? */
700 if( This->pPidl )
701 header.dwFlags |= SCF_PIDL;
702 if( This->sDescription )
703 header.dwFlags |= SCF_DESCRIPTION;
704 if( This->sWorkDir )
705 header.dwFlags |= SCF_WORKDIR;
706 if( This->sArgs )
707 header.dwFlags |= SCF_ARGS;
708 if( This->sIcoPath )
709 header.dwFlags |= SCF_CUSTOMICON;
711 SystemTimeToFileTime ( &This->time1, &header.Time1 );
712 SystemTimeToFileTime ( &This->time2, &header.Time2 );
713 SystemTimeToFileTime ( &This->time3, &header.Time3 );
715 /* write the Shortcut header */
716 r = IStream_Write( stm, &header, sizeof(header), &count );
717 if( FAILED( r ) )
719 ERR("Write failed at %d\n",__LINE__);
720 return r;
723 TRACE("Writing pidl \n");
725 /* write the PIDL to the shortcut */
726 if( This->pPidl )
728 r = ILSaveToStream( stm, This->pPidl );
729 if( FAILED( r ) )
731 ERR("Failed to write PIDL at %d\n",__LINE__);
732 return r;
736 Stream_WriteLocationInfo( stm, exePath );
738 TRACE("Description = %s\n", debugstr_w(This->sDescription));
739 if( This->sDescription )
740 r = Stream_WriteString( stm, This->sDescription );
742 if( This->sPathRel )
743 r = Stream_WriteString( stm, This->sPathRel );
745 if( This->sWorkDir )
746 r = Stream_WriteString( stm, This->sWorkDir );
748 if( This->sArgs )
749 r = Stream_WriteString( stm, This->sArgs );
751 if( This->sIcoPath )
752 r = Stream_WriteString( stm, This->sIcoPath );
754 return S_OK;
757 /************************************************************************
758 * IPersistStream_GetSizeMax (IPersistStream)
760 static HRESULT WINAPI IPersistStream_fnGetSizeMax(
761 IPersistStream* iface,
762 ULARGE_INTEGER* pcbSize)
764 _ICOM_THIS_From_IPersistStream(IShellLinkImpl, iface);
766 TRACE("(%p)\n", This);
768 return E_NOTIMPL;
771 static IPersistStreamVtbl psvt =
773 IPersistStream_fnQueryInterface,
774 IPersistStream_fnAddRef,
775 IPersistStream_fnRelease,
776 IPersistStream_fnGetClassID,
777 IPersistStream_fnIsDirty,
778 IPersistStream_fnLoad,
779 IPersistStream_fnSave,
780 IPersistStream_fnGetSizeMax
783 /**************************************************************************
784 * IShellLink_Constructor
786 HRESULT WINAPI IShellLink_Constructor (
787 IUnknown * pUnkOuter,
788 REFIID riid,
789 LPVOID * ppv)
791 IShellLinkImpl * sl;
793 TRACE("unkOut=%p riid=%s\n",pUnkOuter, debugstr_guid(riid));
795 *ppv = NULL;
797 if(pUnkOuter) return CLASS_E_NOAGGREGATION;
798 sl = (IShellLinkImpl *) LocalAlloc(GMEM_ZEROINIT,sizeof(IShellLinkImpl));
799 if (!sl) return E_OUTOFMEMORY;
801 sl->ref = 1;
802 sl->lpVtbl = &slvt;
803 sl->lpvtblw = &slvtw;
804 sl->lpvtblPersistFile = &pfvt;
805 sl->lpvtblPersistStream = &psvt;
806 sl->iShowCmd = SW_SHOWNORMAL;
807 sl->bDirty = FALSE;
809 TRACE("(%p)->()\n",sl);
811 if (IsEqualIID(riid, &IID_IUnknown) ||
812 IsEqualIID(riid, &IID_IShellLinkA))
813 *ppv = sl;
814 else if (IsEqualIID(riid, &IID_IShellLinkW))
815 *ppv = &(sl->lpvtblw);
816 else {
817 LocalFree((HLOCAL)sl);
818 ERR("E_NOINTERFACE\n");
819 return E_NOINTERFACE;
822 return S_OK;
826 static BOOL SHELL_ExistsFileW(LPCWSTR path)
828 HANDLE hfile = CreateFileW(path, GENERIC_READ, FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL);
830 if (hfile != INVALID_HANDLE_VALUE) {
831 CloseHandle(hfile);
832 return TRUE;
833 } else
834 return FALSE;
837 /**************************************************************************
838 * ShellLink_UpdatePath
839 * update absolute path in sPath using relative path in sPathRel
841 static HRESULT ShellLink_UpdatePath(LPWSTR sPathRel, LPCWSTR path, LPCWSTR sWorkDir, LPWSTR* psPath)
843 if (!path || !psPath)
844 return E_INVALIDARG;
846 if (!*psPath && sPathRel) {
847 WCHAR buffer[2*MAX_PATH], abs_path[2*MAX_PATH];
848 LPWSTR final = NULL;
850 /* first try if [directory of link file] + [relative path] finds an existing file */
852 GetFullPathNameW( path, MAX_PATH*2, buffer, &final );
853 if( !final )
854 final = buffer;
855 lstrcpyW(final, sPathRel);
857 *abs_path = '\0';
859 if (SHELL_ExistsFileW(buffer)) {
860 if (!GetFullPathNameW(buffer, MAX_PATH, abs_path, &final))
861 lstrcpyW(abs_path, buffer);
862 } else {
863 /* try if [working directory] + [relative path] finds an existing file */
864 if (sWorkDir) {
865 lstrcpyW(buffer, sWorkDir);
866 lstrcpyW(PathAddBackslashW(buffer), sPathRel);
868 if (SHELL_ExistsFileW(buffer))
869 if (!GetFullPathNameW(buffer, MAX_PATH, abs_path, &final))
870 lstrcpyW(abs_path, buffer);
874 /* FIXME: This is even not enough - not all shell links can be resolved using this algorithm. */
875 if (!*abs_path)
876 lstrcpyW(abs_path, sPathRel);
878 *psPath = HeapAlloc(GetProcessHeap(), 0, (lstrlenW(abs_path)+1)*sizeof(WCHAR));
879 if (!*psPath)
880 return E_OUTOFMEMORY;
882 lstrcpyW(*psPath, abs_path);
885 return S_OK;
888 /**************************************************************************
889 * IShellLink_ConstructFromFile
891 HRESULT WINAPI IShellLink_ConstructFromFile (
892 IUnknown* pUnkOuter,
893 REFIID riid,
894 LPCITEMIDLIST pidl,
895 LPVOID* ppv
898 IShellLinkW* psl;
900 HRESULT hr = IShellLink_Constructor(NULL, riid, (LPVOID*)&psl);
902 if (SUCCEEDED(hr)) {
903 IPersistFile* ppf;
905 *ppv = NULL;
907 hr = IShellLinkW_QueryInterface(psl, &IID_IPersistFile, (LPVOID*)&ppf);
909 if (SUCCEEDED(hr)) {
910 WCHAR path[MAX_PATH];
912 if (SHGetPathFromIDListW(pidl, path))
913 hr = IPersistFile_Load(ppf, path, 0);
914 else
915 hr = E_FAIL;
917 if (SUCCEEDED(hr))
918 *ppv = (IUnknown*) psl;
920 IPersistFile_Release(ppf);
923 if (!*ppv)
924 IShellLinkW_Release(psl);
927 return hr;
930 /**************************************************************************
931 * IShellLinkA_QueryInterface
933 static HRESULT WINAPI IShellLinkA_fnQueryInterface( IShellLinkA * iface, REFIID riid, LPVOID *ppvObj)
935 IShellLinkImpl *This = (IShellLinkImpl *)iface;
937 TRACE("(%p)->(\n\tIID:\t%s)\n",This,debugstr_guid(riid));
939 *ppvObj = NULL;
941 if(IsEqualIID(riid, &IID_IUnknown) ||
942 IsEqualIID(riid, &IID_IShellLinkA))
944 *ppvObj = This;
946 else if(IsEqualIID(riid, &IID_IShellLinkW))
948 *ppvObj = (IShellLinkW *)&(This->lpvtblw);
950 else if(IsEqualIID(riid, &IID_IPersistFile))
952 *ppvObj = (IPersistFile *)&(This->lpvtblPersistFile);
954 else if(IsEqualIID(riid, &IID_IPersistStream))
956 *ppvObj = (IPersistStream *)&(This->lpvtblPersistStream);
959 if(*ppvObj)
961 IUnknown_AddRef((IUnknown*)(*ppvObj));
962 TRACE("-- Interface: (%p)->(%p)\n",ppvObj,*ppvObj);
963 return S_OK;
965 TRACE("-- Interface: E_NOINTERFACE\n");
966 return E_NOINTERFACE;
968 /******************************************************************************
969 * IShellLinkA_AddRef
971 static ULONG WINAPI IShellLinkA_fnAddRef(IShellLinkA * iface)
973 IShellLinkImpl *This = (IShellLinkImpl *)iface;
975 TRACE("(%p)->(count=%lu)\n",This,This->ref);
977 return ++(This->ref);
979 /******************************************************************************
980 * IShellLinkA_Release
982 static ULONG WINAPI IShellLinkA_fnRelease(IShellLinkA * iface)
984 IShellLinkImpl *This = (IShellLinkImpl *)iface;
986 TRACE("(%p)->(count=%lu)\n",This,This->ref);
988 if (--(This->ref))
989 return This->ref;
991 TRACE("-- destroying IShellLink(%p)\n",This);
993 if (This->sIcoPath)
994 HeapFree(GetProcessHeap(), 0, This->sIcoPath);
996 if (This->sArgs)
997 HeapFree(GetProcessHeap(), 0, This->sArgs);
999 if (This->sWorkDir)
1000 HeapFree(GetProcessHeap(), 0, This->sWorkDir);
1002 if (This->sDescription)
1003 HeapFree(GetProcessHeap(), 0, This->sDescription);
1005 if (This->sPath)
1006 HeapFree(GetProcessHeap(),0,This->sPath);
1008 if (This->pPidl)
1009 ILFree(This->pPidl);
1011 LocalFree((HANDLE)This);
1013 return 0;
1016 static HRESULT WINAPI IShellLinkA_fnGetPath(IShellLinkA * iface, LPSTR pszFile,
1017 INT cchMaxPath, WIN32_FIND_DATAA *pfd, DWORD fFlags)
1019 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1021 TRACE("(%p)->(pfile=%p len=%u find_data=%p flags=%lu)(%s)\n",
1022 This, pszFile, cchMaxPath, pfd, fFlags, debugstr_w(This->sPath));
1024 if( cchMaxPath )
1025 pszFile[0] = 0;
1026 if (This->sPath)
1027 WideCharToMultiByte( CP_ACP, 0, This->sPath, -1,
1028 pszFile, cchMaxPath, NULL, NULL);
1030 if (pfd) FIXME("(%p): WIN32_FIND_DATA is not yet filled.\n", This);
1032 return NOERROR;
1035 static HRESULT WINAPI IShellLinkA_fnGetIDList(IShellLinkA * iface, LPITEMIDLIST * ppidl)
1037 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1039 TRACE("(%p)->(ppidl=%p)\n",This, ppidl);
1041 *ppidl = ILClone(This->pPidl);
1043 return NOERROR;
1046 static HRESULT WINAPI IShellLinkA_fnSetIDList(IShellLinkA * iface, LPCITEMIDLIST pidl)
1048 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1050 TRACE("(%p)->(pidl=%p)\n",This, pidl);
1052 if (This->pPidl)
1053 ILFree(This->pPidl);
1054 This->pPidl = ILClone (pidl);
1055 This->bDirty = TRUE;
1057 return S_OK;
1060 static HRESULT WINAPI IShellLinkA_fnGetDescription(IShellLinkA * iface, LPSTR pszName,INT cchMaxName)
1062 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1064 TRACE("(%p)->(%p len=%u)\n",This, pszName, cchMaxName);
1066 if( cchMaxName )
1067 pszName[0] = 0;
1068 if( This->sDescription )
1069 WideCharToMultiByte( CP_ACP, 0, This->sDescription, -1,
1070 pszName, cchMaxName, NULL, NULL);
1072 return S_OK;
1074 static HRESULT WINAPI IShellLinkA_fnSetDescription(IShellLinkA * iface, LPCSTR pszName)
1076 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1078 TRACE("(%p)->(pName=%s)\n", This, pszName);
1080 if (This->sDescription)
1081 HeapFree(GetProcessHeap(), 0, This->sDescription);
1082 This->sDescription = HEAP_strdupAtoW( GetProcessHeap(), 0, pszName);
1083 if ( !This->sDescription )
1084 return E_OUTOFMEMORY;
1086 This->bDirty = TRUE;
1088 return S_OK;
1091 static HRESULT WINAPI IShellLinkA_fnGetWorkingDirectory(IShellLinkA * iface, LPSTR pszDir,INT cchMaxPath)
1093 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1095 TRACE("(%p)->(%p len=%u)\n", This, pszDir, cchMaxPath);
1097 if( cchMaxPath )
1098 pszDir[0] = 0;
1099 if( This->sWorkDir )
1100 WideCharToMultiByte( CP_ACP, 0, This->sWorkDir, -1,
1101 pszDir, cchMaxPath, NULL, NULL);
1103 return S_OK;
1106 static HRESULT WINAPI IShellLinkA_fnSetWorkingDirectory(IShellLinkA * iface, LPCSTR pszDir)
1108 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1110 TRACE("(%p)->(dir=%s)\n",This, pszDir);
1112 if (This->sWorkDir)
1113 HeapFree(GetProcessHeap(), 0, This->sWorkDir);
1114 This->sWorkDir = HEAP_strdupAtoW( GetProcessHeap(), 0, pszDir);
1115 if ( !This->sWorkDir )
1116 return E_OUTOFMEMORY;
1118 This->bDirty = TRUE;
1120 return S_OK;
1123 static HRESULT WINAPI IShellLinkA_fnGetArguments(IShellLinkA * iface, LPSTR pszArgs,INT cchMaxPath)
1125 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1127 TRACE("(%p)->(%p len=%u)\n", This, pszArgs, cchMaxPath);
1129 if( cchMaxPath )
1130 pszArgs[0] = 0;
1131 if( This->sArgs )
1132 WideCharToMultiByte( CP_ACP, 0, This->sArgs, -1,
1133 pszArgs, cchMaxPath, NULL, NULL);
1135 return S_OK;
1138 static HRESULT WINAPI IShellLinkA_fnSetArguments(IShellLinkA * iface, LPCSTR pszArgs)
1140 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1142 TRACE("(%p)->(args=%s)\n",This, pszArgs);
1144 if (This->sArgs)
1145 HeapFree(GetProcessHeap(), 0, This->sArgs);
1146 This->sArgs = HEAP_strdupAtoW( GetProcessHeap(), 0, pszArgs);
1147 if( !This->sArgs )
1148 return E_OUTOFMEMORY;
1150 This->bDirty = TRUE;
1152 return S_OK;
1155 static HRESULT WINAPI IShellLinkA_fnGetHotkey(IShellLinkA * iface, WORD *pwHotkey)
1157 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1159 TRACE("(%p)->(%p)(0x%08x)\n",This, pwHotkey, This->wHotKey);
1161 *pwHotkey = This->wHotKey;
1163 return S_OK;
1166 static HRESULT WINAPI IShellLinkA_fnSetHotkey(IShellLinkA * iface, WORD wHotkey)
1168 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1170 TRACE("(%p)->(hotkey=%x)\n",This, wHotkey);
1172 This->wHotKey = wHotkey;
1173 This->bDirty = TRUE;
1175 return S_OK;
1178 static HRESULT WINAPI IShellLinkA_fnGetShowCmd(IShellLinkA * iface, INT *piShowCmd)
1180 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1182 TRACE("(%p)->(%p)\n",This, piShowCmd);
1183 *piShowCmd = This->iShowCmd;
1184 return S_OK;
1187 static HRESULT WINAPI IShellLinkA_fnSetShowCmd(IShellLinkA * iface, INT iShowCmd)
1189 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1191 TRACE("(%p) %d\n",This, iShowCmd);
1193 This->iShowCmd = iShowCmd;
1194 This->bDirty = TRUE;
1196 return NOERROR;
1199 static HRESULT SHELL_PidlGeticonLocationA(IShellFolder* psf, LPITEMIDLIST pidl, LPSTR pszIconPath, int cchIconPath, int* piIcon)
1201 LPCITEMIDLIST pidlLast;
1203 HRESULT hr = SHBindToParent(pidl, &IID_IShellFolder, (LPVOID*)&psf, &pidlLast);
1205 if (SUCCEEDED(hr)) {
1206 IExtractIconA* pei;
1208 hr = IShellFolder_GetUIObjectOf(psf, 0, 1, (LPCITEMIDLIST*)&pidlLast, &IID_IExtractIconA, NULL, (LPVOID*)&pei);
1210 if (SUCCEEDED(hr)) {
1211 hr = IExtractIconA_GetIconLocation(pei, 0, pszIconPath, MAX_PATH, piIcon, NULL);
1213 IExtractIconA_Release(pei);
1216 IShellFolder_Release(psf);
1219 return hr;
1222 static HRESULT WINAPI IShellLinkA_fnGetIconLocation(IShellLinkA * iface, LPSTR pszIconPath,INT cchIconPath,INT *piIcon)
1224 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1226 TRACE("(%p)->(%p len=%u iicon=%p)\n", This, pszIconPath, cchIconPath, piIcon);
1228 if (cchIconPath)
1229 pszIconPath[0] = 0;
1231 if (This->sIcoPath) {
1232 WideCharToMultiByte(CP_ACP, 0, This->sIcoPath, -1, pszIconPath, cchIconPath, NULL, NULL);
1233 *piIcon = This->iIcoNdx;
1234 return S_OK;
1237 if (This->pPidl || This->sPath) {
1238 IShellFolder* pdsk;
1240 HRESULT hr = SHGetDesktopFolder(&pdsk);
1242 if (SUCCEEDED(hr)) {
1243 /* first look for an icon using the PIDL (if present) */
1244 if (This->pPidl)
1245 hr = SHELL_PidlGeticonLocationA(pdsk, This->pPidl, pszIconPath, cchIconPath, piIcon);
1246 else
1247 hr = E_FAIL;
1249 /* if we couldn't find an icon yet, look for it using the file system path */
1250 if (FAILED(hr) && This->sPath) {
1251 LPITEMIDLIST pidl;
1253 hr = IShellFolder_ParseDisplayName(pdsk, 0, NULL, This->sPath, NULL, &pidl, NULL);
1255 if (SUCCEEDED(hr)) {
1256 hr = SHELL_PidlGeticonLocationA(pdsk, pidl, pszIconPath, cchIconPath, piIcon);
1258 SHFree(pidl);
1262 IShellFolder_Release(pdsk);
1265 return hr;
1266 } else
1267 return E_FAIL;
1270 static HRESULT WINAPI IShellLinkA_fnSetIconLocation(IShellLinkA * iface, LPCSTR pszIconPath,INT iIcon)
1272 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1274 TRACE("(%p)->(path=%s iicon=%u)\n",This, pszIconPath, iIcon);
1276 if (This->sIcoPath)
1277 HeapFree(GetProcessHeap(), 0, This->sIcoPath);
1278 This->sIcoPath = HEAP_strdupAtoW(GetProcessHeap(), 0, pszIconPath);
1279 if ( !This->sIcoPath )
1280 return E_OUTOFMEMORY;
1282 This->iIcoNdx = iIcon;
1283 This->bDirty = TRUE;
1285 return S_OK;
1288 static HRESULT WINAPI IShellLinkA_fnSetRelativePath(IShellLinkA * iface, LPCSTR pszPathRel, DWORD dwReserved)
1290 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1292 FIXME("(%p)->(path=%s %lx)\n",This, pszPathRel, dwReserved);
1294 if (This->sPathRel)
1295 HeapFree(GetProcessHeap(), 0, This->sPathRel);
1296 This->sPathRel = HEAP_strdupAtoW(GetProcessHeap(), 0, pszPathRel);
1297 This->bDirty = TRUE;
1299 return ShellLink_UpdatePath(This->sPathRel, This->sPath, This->sWorkDir, &This->sPath);
1302 static HRESULT WINAPI IShellLinkA_fnResolve(IShellLinkA * iface, HWND hwnd, DWORD fFlags)
1304 HRESULT hr = S_OK;
1306 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1308 FIXME("(%p)->(hwnd=%p flags=%lx)\n",This, hwnd, fFlags);
1310 /*FIXME: use IResolveShellLink interface */
1312 if (!This->sPath && This->pPidl) {
1313 WCHAR buffer[MAX_PATH];
1315 hr = SHELL_GetPathFromIDListW(This->pPidl, buffer, MAX_PATH);
1317 if (SUCCEEDED(hr) && *buffer) {
1318 This->sPath = (LPWSTR) HeapAlloc(GetProcessHeap(), 0, (lstrlenW(buffer)+1)*sizeof(WCHAR));
1319 if (!This->sPath)
1320 return E_OUTOFMEMORY;
1322 lstrcpyW(This->sPath, buffer);
1324 This->bDirty = TRUE;
1325 } else
1326 hr = S_OK; /* don't report any error occured while just caching information */
1329 if (!This->sIcoPath && This->sPath) {
1330 This->sIcoPath = (LPWSTR) HeapAlloc(GetProcessHeap(), 0, (lstrlenW(This->sPath)+1)*sizeof(WCHAR));
1331 if (!This->sIcoPath)
1332 return E_OUTOFMEMORY;
1334 lstrcpyW(This->sIcoPath, This->sPath);
1335 This->iIcoNdx = 0;
1337 This->bDirty = TRUE;
1340 return hr;
1343 static HRESULT WINAPI IShellLinkA_fnSetPath(IShellLinkA * iface, LPCSTR pszFile)
1345 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1346 char buffer[MAX_PATH];
1347 LPSTR fname;
1349 TRACE("(%p)->(path=%s)\n",This, pszFile);
1351 if (!GetFullPathNameA(pszFile, MAX_PATH, buffer, &fname))
1352 return E_FAIL;
1354 if (This->sPath)
1355 HeapFree(GetProcessHeap(), 0, This->sPath);
1357 This->sPath = HEAP_strdupAtoW(GetProcessHeap(), 0, buffer);
1358 if( !This->sPath )
1359 return E_OUTOFMEMORY;
1361 This->bDirty = TRUE;
1363 return S_OK;
1366 /**************************************************************************
1367 * IShellLink Implementation
1370 static IShellLinkAVtbl slvt =
1372 IShellLinkA_fnQueryInterface,
1373 IShellLinkA_fnAddRef,
1374 IShellLinkA_fnRelease,
1375 IShellLinkA_fnGetPath,
1376 IShellLinkA_fnGetIDList,
1377 IShellLinkA_fnSetIDList,
1378 IShellLinkA_fnGetDescription,
1379 IShellLinkA_fnSetDescription,
1380 IShellLinkA_fnGetWorkingDirectory,
1381 IShellLinkA_fnSetWorkingDirectory,
1382 IShellLinkA_fnGetArguments,
1383 IShellLinkA_fnSetArguments,
1384 IShellLinkA_fnGetHotkey,
1385 IShellLinkA_fnSetHotkey,
1386 IShellLinkA_fnGetShowCmd,
1387 IShellLinkA_fnSetShowCmd,
1388 IShellLinkA_fnGetIconLocation,
1389 IShellLinkA_fnSetIconLocation,
1390 IShellLinkA_fnSetRelativePath,
1391 IShellLinkA_fnResolve,
1392 IShellLinkA_fnSetPath
1396 /**************************************************************************
1397 * IShellLinkW_fnQueryInterface
1399 static HRESULT WINAPI IShellLinkW_fnQueryInterface(
1400 IShellLinkW * iface, REFIID riid, LPVOID *ppvObj)
1402 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1404 return IShellLinkA_QueryInterface((IShellLinkA*)This, riid, ppvObj);
1407 /******************************************************************************
1408 * IShellLinkW_fnAddRef
1410 static ULONG WINAPI IShellLinkW_fnAddRef(IShellLinkW * iface)
1412 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1414 TRACE("(%p)->(count=%lu)\n",This,This->ref);
1416 return IShellLinkA_AddRef((IShellLinkA*)This);
1418 /******************************************************************************
1419 * IShellLinkW_fnRelease
1422 static ULONG WINAPI IShellLinkW_fnRelease(IShellLinkW * iface)
1424 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1426 TRACE("(%p)->(count=%lu)\n",This,This->ref);
1428 return IShellLinkA_Release((IShellLinkA*)This);
1431 static HRESULT WINAPI IShellLinkW_fnGetPath(IShellLinkW * iface, LPWSTR pszFile,INT cchMaxPath, WIN32_FIND_DATAW *pfd, DWORD fFlags)
1433 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1435 TRACE("(%p)->(pfile=%p len=%u find_data=%p flags=%lu)\n",
1436 This, pszFile, cchMaxPath, pfd, fFlags);
1438 if( cchMaxPath )
1439 pszFile[0] = 0;
1440 if( This->sPath )
1441 lstrcpynW( pszFile, This->sPath, cchMaxPath );
1443 if (pfd) FIXME("(%p): WIN32_FIND_DATA is not yet filled.\n", This);
1445 return NOERROR;
1448 static HRESULT WINAPI IShellLinkW_fnGetIDList(IShellLinkW * iface, LPITEMIDLIST * ppidl)
1450 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1452 TRACE("(%p)->(ppidl=%p)\n",This, ppidl);
1454 if( This->pPidl)
1455 *ppidl = ILClone( This->pPidl );
1456 else
1457 *ppidl = NULL;
1459 return S_OK;
1462 static HRESULT WINAPI IShellLinkW_fnSetIDList(IShellLinkW * iface, LPCITEMIDLIST pidl)
1464 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1466 TRACE("(%p)->(pidl=%p)\n",This, pidl);
1468 if( This->pPidl )
1469 ILFree( This->pPidl );
1470 This->pPidl = ILClone( pidl );
1471 if( !This->pPidl )
1472 return E_FAIL;
1474 This->bDirty = TRUE;
1476 return S_OK;
1479 static HRESULT WINAPI IShellLinkW_fnGetDescription(IShellLinkW * iface, LPWSTR pszName,INT cchMaxName)
1481 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1483 TRACE("(%p)->(%p len=%u)\n",This, pszName, cchMaxName);
1485 if( cchMaxName )
1486 pszName[0] = 0;
1487 if( This->sDescription )
1488 lstrcpynW( pszName, This->sDescription, cchMaxName );
1490 return S_OK;
1493 static HRESULT WINAPI IShellLinkW_fnSetDescription(IShellLinkW * iface, LPCWSTR pszName)
1495 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1497 TRACE("(%p)->(desc=%s)\n",This, debugstr_w(pszName));
1499 if (This->sDescription)
1500 HeapFree(GetProcessHeap(), 0, This->sDescription);
1501 This->sDescription = HeapAlloc( GetProcessHeap(), 0,
1502 (lstrlenW( pszName )+1)*sizeof(WCHAR) );
1503 if ( !This->sDescription )
1504 return E_OUTOFMEMORY;
1506 lstrcpyW( This->sDescription, pszName );
1507 This->bDirty = TRUE;
1509 return S_OK;
1512 static HRESULT WINAPI IShellLinkW_fnGetWorkingDirectory(IShellLinkW * iface, LPWSTR pszDir,INT cchMaxPath)
1514 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1516 TRACE("(%p)->(%p len %u)\n", This, pszDir, cchMaxPath);
1518 if( cchMaxPath )
1519 pszDir[0] = 0;
1520 if( This->sWorkDir )
1521 lstrcpynW( pszDir, This->sWorkDir, cchMaxPath );
1523 return S_OK;
1526 static HRESULT WINAPI IShellLinkW_fnSetWorkingDirectory(IShellLinkW * iface, LPCWSTR pszDir)
1528 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1530 TRACE("(%p)->(dir=%s)\n",This, debugstr_w(pszDir));
1532 if (This->sWorkDir)
1533 HeapFree(GetProcessHeap(), 0, This->sWorkDir);
1534 This->sWorkDir = HeapAlloc( GetProcessHeap(), 0,
1535 (lstrlenW( pszDir )+1)*sizeof (WCHAR) );
1536 if ( !This->sWorkDir )
1537 return E_OUTOFMEMORY;
1538 lstrcpyW( This->sWorkDir, pszDir );
1539 This->bDirty = TRUE;
1541 return S_OK;
1544 static HRESULT WINAPI IShellLinkW_fnGetArguments(IShellLinkW * iface, LPWSTR pszArgs,INT cchMaxPath)
1546 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1548 TRACE("(%p)->(%p len=%u)\n", This, pszArgs, cchMaxPath);
1550 if( cchMaxPath )
1551 pszArgs[0] = 0;
1552 if( This->sArgs )
1553 lstrcpynW( pszArgs, This->sArgs, cchMaxPath );
1555 return NOERROR;
1558 static HRESULT WINAPI IShellLinkW_fnSetArguments(IShellLinkW * iface, LPCWSTR pszArgs)
1560 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1562 TRACE("(%p)->(args=%s)\n",This, debugstr_w(pszArgs));
1564 if (This->sArgs)
1565 HeapFree(GetProcessHeap(), 0, This->sArgs);
1566 This->sArgs = HeapAlloc( GetProcessHeap(), 0,
1567 (lstrlenW( pszArgs )+1)*sizeof (WCHAR) );
1568 if ( !This->sArgs )
1569 return E_OUTOFMEMORY;
1570 lstrcpyW( This->sArgs, pszArgs );
1571 This->bDirty = TRUE;
1573 return S_OK;
1576 static HRESULT WINAPI IShellLinkW_fnGetHotkey(IShellLinkW * iface, WORD *pwHotkey)
1578 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1580 TRACE("(%p)->(%p)\n",This, pwHotkey);
1582 *pwHotkey=This->wHotKey;
1584 return S_OK;
1587 static HRESULT WINAPI IShellLinkW_fnSetHotkey(IShellLinkW * iface, WORD wHotkey)
1589 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1591 TRACE("(%p)->(hotkey=%x)\n",This, wHotkey);
1593 This->wHotKey = wHotkey;
1594 This->bDirty = TRUE;
1596 return S_OK;
1599 static HRESULT WINAPI IShellLinkW_fnGetShowCmd(IShellLinkW * iface, INT *piShowCmd)
1601 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1603 TRACE("(%p)->(%p)\n",This, piShowCmd);
1605 *piShowCmd = This->iShowCmd;
1607 return S_OK;
1610 static HRESULT WINAPI IShellLinkW_fnSetShowCmd(IShellLinkW * iface, INT iShowCmd)
1612 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1614 This->iShowCmd = iShowCmd;
1615 This->bDirty = TRUE;
1617 return S_OK;
1620 static HRESULT SHELL_PidlGeticonLocationW(IShellFolder* psf, LPITEMIDLIST pidl, LPWSTR pszIconPath, int cchIconPath, int* piIcon)
1622 LPCITEMIDLIST pidlLast;
1624 HRESULT hr = SHBindToParent(pidl, &IID_IShellFolder, (LPVOID*)&psf, &pidlLast);
1626 if (SUCCEEDED(hr)) {
1627 IExtractIconW* pei;
1629 hr = IShellFolder_GetUIObjectOf(psf, 0, 1, (LPCITEMIDLIST*)&pidlLast, &IID_IExtractIconW, NULL, (LPVOID*)&pei);
1631 if (SUCCEEDED(hr)) {
1632 hr = IExtractIconW_GetIconLocation(pei, 0, pszIconPath, MAX_PATH, piIcon, NULL);
1634 IExtractIconW_Release(pei);
1637 IShellFolder_Release(psf);
1640 return hr;
1643 static HRESULT WINAPI IShellLinkW_fnGetIconLocation(IShellLinkW * iface, LPWSTR pszIconPath,INT cchIconPath,INT *piIcon)
1645 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1647 TRACE("(%p)->(%p len=%u iicon=%p)\n", This, pszIconPath, cchIconPath, piIcon);
1649 if (cchIconPath)
1650 pszIconPath[0] = 0;
1652 if (This->sIcoPath) {
1653 lstrcpynW(pszIconPath, This->sIcoPath, cchIconPath);
1654 *piIcon = This->iIcoNdx;
1655 return S_OK;
1658 if (This->pPidl || This->sPath) {
1659 IShellFolder* pdsk;
1661 HRESULT hr = SHGetDesktopFolder(&pdsk);
1663 if (SUCCEEDED(hr)) {
1664 /* first look for an icon using the PIDL (if present) */
1665 if (This->pPidl)
1666 hr = SHELL_PidlGeticonLocationW(pdsk, This->pPidl, pszIconPath, cchIconPath, piIcon);
1667 else
1668 hr = E_FAIL;
1670 /* if we couldn't find an icon yet, look for it using the file system path */
1671 if (FAILED(hr) && This->sPath) {
1672 LPITEMIDLIST pidl;
1674 hr = IShellFolder_ParseDisplayName(pdsk, 0, NULL, This->sPath, NULL, &pidl, NULL);
1676 if (SUCCEEDED(hr)) {
1677 hr = SHELL_PidlGeticonLocationW(pdsk, pidl, pszIconPath, cchIconPath, piIcon);
1679 SHFree(pidl);
1683 IShellFolder_Release(pdsk);
1686 return hr;
1687 } else
1688 return E_FAIL;
1691 static HRESULT WINAPI IShellLinkW_fnSetIconLocation(IShellLinkW * iface, LPCWSTR pszIconPath,INT iIcon)
1693 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1695 TRACE("(%p)->(path=%s iicon=%u)\n",This, debugstr_w(pszIconPath), iIcon);
1697 if (This->sIcoPath)
1698 HeapFree(GetProcessHeap(), 0, This->sIcoPath);
1699 This->sIcoPath = HeapAlloc( GetProcessHeap(), 0,
1700 (lstrlenW( pszIconPath )+1)*sizeof (WCHAR) );
1701 if ( !This->sIcoPath )
1702 return E_OUTOFMEMORY;
1703 lstrcpyW( This->sIcoPath, pszIconPath );
1705 This->iIcoNdx = iIcon;
1706 This->bDirty = TRUE;
1708 return S_OK;
1711 static HRESULT WINAPI IShellLinkW_fnSetRelativePath(IShellLinkW * iface, LPCWSTR pszPathRel, DWORD dwReserved)
1713 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1715 TRACE("(%p)->(path=%s %lx)\n",This, debugstr_w(pszPathRel), dwReserved);
1717 if (This->sPathRel)
1718 HeapFree(GetProcessHeap(), 0, This->sPathRel);
1719 This->sPathRel = HeapAlloc( GetProcessHeap(), 0,
1720 (lstrlenW( pszPathRel )+1) * sizeof (WCHAR) );
1721 if ( !This->sPathRel )
1722 return E_OUTOFMEMORY;
1723 lstrcpyW( This->sPathRel, pszPathRel );
1724 This->bDirty = TRUE;
1726 return ShellLink_UpdatePath(This->sPathRel, This->sPath, This->sWorkDir, &This->sPath);
1729 static HRESULT WINAPI IShellLinkW_fnResolve(IShellLinkW * iface, HWND hwnd, DWORD fFlags)
1731 HRESULT hr = S_OK;
1733 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1735 FIXME("(%p)->(hwnd=%p flags=%lx)\n",This, hwnd, fFlags);
1737 /*FIXME: use IResolveShellLink interface */
1739 if (!This->sPath && This->pPidl) {
1740 WCHAR buffer[MAX_PATH];
1742 hr = SHELL_GetPathFromIDListW(This->pPidl, buffer, MAX_PATH);
1744 if (SUCCEEDED(hr) && *buffer) {
1745 This->sPath = (LPWSTR) HeapAlloc(GetProcessHeap(), 0, (lstrlenW(buffer)+1)*sizeof(WCHAR));
1746 if (!This->sPath)
1747 return E_OUTOFMEMORY;
1749 lstrcpyW(This->sPath, buffer);
1751 This->bDirty = TRUE;
1752 } else
1753 hr = S_OK; /* don't report any error occured while just caching information */
1756 if (!This->sIcoPath && This->sPath) {
1757 This->sIcoPath = (LPWSTR) HeapAlloc(GetProcessHeap(), 0, (lstrlenW(This->sPath)+1)*sizeof(WCHAR));
1758 if (!This->sIcoPath)
1759 return E_OUTOFMEMORY;
1761 lstrcpyW(This->sIcoPath, This->sPath);
1762 This->iIcoNdx = 0;
1764 This->bDirty = TRUE;
1767 return hr;
1770 static HRESULT WINAPI IShellLinkW_fnSetPath(IShellLinkW * iface, LPCWSTR pszFile)
1772 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1773 WCHAR buffer[MAX_PATH];
1774 LPWSTR fname;
1776 TRACE("(%p)->(path=%s)\n",This, debugstr_w(pszFile));
1778 if (!GetFullPathNameW(pszFile, MAX_PATH, buffer, &fname))
1779 return E_FAIL;
1781 if (This->sPath)
1782 HeapFree(GetProcessHeap(), 0, This->sPath);
1784 This->sPath = HeapAlloc( GetProcessHeap(), 0,
1785 (lstrlenW( buffer )+1) * sizeof (WCHAR) );
1786 if (!This->sPath)
1787 return E_OUTOFMEMORY;
1789 lstrcpyW(This->sPath, buffer);
1790 This->bDirty = TRUE;
1792 return S_OK;
1795 /**************************************************************************
1796 * IShellLinkW Implementation
1799 static IShellLinkWVtbl slvtw =
1801 IShellLinkW_fnQueryInterface,
1802 IShellLinkW_fnAddRef,
1803 IShellLinkW_fnRelease,
1804 IShellLinkW_fnGetPath,
1805 IShellLinkW_fnGetIDList,
1806 IShellLinkW_fnSetIDList,
1807 IShellLinkW_fnGetDescription,
1808 IShellLinkW_fnSetDescription,
1809 IShellLinkW_fnGetWorkingDirectory,
1810 IShellLinkW_fnSetWorkingDirectory,
1811 IShellLinkW_fnGetArguments,
1812 IShellLinkW_fnSetArguments,
1813 IShellLinkW_fnGetHotkey,
1814 IShellLinkW_fnSetHotkey,
1815 IShellLinkW_fnGetShowCmd,
1816 IShellLinkW_fnSetShowCmd,
1817 IShellLinkW_fnGetIconLocation,
1818 IShellLinkW_fnSetIconLocation,
1819 IShellLinkW_fnSetRelativePath,
1820 IShellLinkW_fnResolve,
1821 IShellLinkW_fnSetPath