Fix the ITS moniker implementation.
[wine.git] / dlls / shell32 / shelllink.c
blobdf0b02a8f335d862cb7f2dd91bd509269dfc7129
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)
158 #define _IPersistStream_From_ICOM_THIS(class, name) class* StreamThis = (class*)(((char*)name)+_IPersistStream_Offset)
160 static HRESULT ShellLink_UpdatePath(LPWSTR sPathRel, LPCWSTR path, LPCWSTR sWorkDir, LPWSTR* psPath);
162 /* strdup on the process heap */
163 inline static LPWSTR HEAP_strdupAtoW( HANDLE heap, DWORD flags, LPCSTR str)
165 INT len = MultiByteToWideChar( CP_ACP, 0, str, -1, NULL, 0 );
166 LPWSTR p = HeapAlloc( heap, flags, len*sizeof (WCHAR) );
167 if( !p )
168 return p;
169 MultiByteToWideChar( CP_ACP, 0, str, -1, p, len );
170 return p;
174 /**************************************************************************
175 * IPersistFile_QueryInterface
177 static HRESULT WINAPI IPersistFile_fnQueryInterface(
178 IPersistFile* iface,
179 REFIID riid,
180 LPVOID *ppvObj)
182 _ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface);
184 TRACE("(%p)\n",This);
186 return IShellLinkA_QueryInterface((IShellLinkA*)This, riid, ppvObj);
189 /******************************************************************************
190 * IPersistFile_AddRef
192 static ULONG WINAPI IPersistFile_fnAddRef(IPersistFile* iface)
194 _ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface);
196 TRACE("(%p)->(count=%lu)\n",This,This->ref);
198 return IShellLinkA_AddRef((IShellLinkA*)This);
200 /******************************************************************************
201 * IPersistFile_Release
203 static ULONG WINAPI IPersistFile_fnRelease(IPersistFile* iface)
205 _ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface);
207 TRACE("(%p)->(count=%lu)\n",This,This->ref);
209 return IShellLinkA_Release((IShellLinkA*)This);
212 static HRESULT WINAPI IPersistFile_fnGetClassID(IPersistFile* iface, CLSID *pClassID)
214 _ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface);
215 FIXME("(%p)\n",This);
216 return NOERROR;
218 static HRESULT WINAPI IPersistFile_fnIsDirty(IPersistFile* iface)
220 _ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface);
222 TRACE("(%p)\n",This);
224 if (This->bDirty)
225 return S_OK;
227 return S_FALSE;
229 static HRESULT WINAPI IPersistFile_fnLoad(IPersistFile* iface, LPCOLESTR pszFileName, DWORD dwMode)
231 _ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface);
232 _IPersistStream_From_ICOM_THIS(IPersistStream, This);
233 HRESULT r;
234 IStream *stm;
236 TRACE("(%p, %s)\n",This, debugstr_w(pszFileName));
238 r = CreateStreamOnFile(pszFileName, dwMode, &stm);
239 if( SUCCEEDED( r ) )
241 r = IPersistStream_Load(StreamThis, stm);
242 ShellLink_UpdatePath(This->sPathRel, pszFileName, This->sWorkDir, &This->sPath);
243 IStream_Release( stm );
244 This->bDirty = FALSE;
247 return r;
250 static BOOL StartLinkProcessor( LPCOLESTR szLink )
252 static const WCHAR szFormat[] = {'w','i','n','e','m','e','n','u','b','u','i','l','d','e','r','.','e','x','e',
253 ' ','-','r',' ','"','%','s','"',0 };
254 LONG len;
255 LPWSTR buffer;
256 STARTUPINFOW si;
257 PROCESS_INFORMATION pi;
259 len = sizeof(szFormat) + lstrlenW( szLink ) * sizeof(WCHAR);
260 buffer = HeapAlloc( GetProcessHeap(), 0, len );
261 if( !buffer )
262 return FALSE;
264 wsprintfW( buffer, szFormat, szLink );
266 TRACE("starting %s\n",debugstr_w(buffer));
268 memset(&si, 0, sizeof(si));
269 si.cb = sizeof(si);
270 if (!CreateProcessW( NULL, buffer, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi)) return FALSE;
272 /* wait for a while to throttle the creation of linker processes */
273 if( WAIT_OBJECT_0 != WaitForSingleObject( pi.hProcess, 10000 ) )
274 WARN("Timed out waiting for shell linker\n");
276 CloseHandle( pi.hProcess );
277 CloseHandle( pi.hThread );
279 return TRUE;
282 static HRESULT WINAPI IPersistFile_fnSave(IPersistFile* iface, LPCOLESTR pszFileName, BOOL fRemember)
284 _ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface);
285 _IPersistStream_From_ICOM_THIS(IPersistStream, This);
286 HRESULT r;
287 IStream *stm;
289 TRACE("(%p)->(%s)\n",This,debugstr_w(pszFileName));
291 if (!pszFileName || !This->sPath)
292 return E_FAIL;
294 r = CreateStreamOnFile(pszFileName, STGM_READWRITE | STGM_CREATE, &stm);
295 if( SUCCEEDED( r ) )
297 r = IPersistStream_Save(StreamThis, stm, FALSE);
298 IStream_Release( stm );
300 if( SUCCEEDED( r ) )
302 StartLinkProcessor( pszFileName );
304 This->bDirty = FALSE;
306 else
308 DeleteFileW( pszFileName );
309 WARN("Failed to create shortcut %s\n", debugstr_w(pszFileName) );
313 return r;
316 static HRESULT WINAPI IPersistFile_fnSaveCompleted(IPersistFile* iface, LPCOLESTR pszFileName)
318 _ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface);
319 FIXME("(%p)->(%s)\n",This,debugstr_w(pszFileName));
320 return NOERROR;
322 static HRESULT WINAPI IPersistFile_fnGetCurFile(IPersistFile* iface, LPOLESTR *ppszFileName)
324 _ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface);
325 FIXME("(%p)\n",This);
326 return NOERROR;
329 static IPersistFileVtbl pfvt =
331 IPersistFile_fnQueryInterface,
332 IPersistFile_fnAddRef,
333 IPersistFile_fnRelease,
334 IPersistFile_fnGetClassID,
335 IPersistFile_fnIsDirty,
336 IPersistFile_fnLoad,
337 IPersistFile_fnSave,
338 IPersistFile_fnSaveCompleted,
339 IPersistFile_fnGetCurFile
342 /************************************************************************
343 * IPersistStream_QueryInterface
345 static HRESULT WINAPI IPersistStream_fnQueryInterface(
346 IPersistStream* iface,
347 REFIID riid,
348 VOID** ppvoid)
350 _ICOM_THIS_From_IPersistStream(IShellLinkImpl, iface);
352 TRACE("(%p)\n",This);
354 return IShellLinkA_QueryInterface((IShellLinkA*)This, riid, ppvoid);
357 /************************************************************************
358 * IPersistStream_Release
360 static ULONG WINAPI IPersistStream_fnRelease(
361 IPersistStream* iface)
363 _ICOM_THIS_From_IPersistStream(IShellLinkImpl, iface);
365 TRACE("(%p)\n",This);
367 return IShellLinkA_Release((IShellLinkA*)This);
370 /************************************************************************
371 * IPersistStream_AddRef
373 static ULONG WINAPI IPersistStream_fnAddRef(
374 IPersistStream* iface)
376 _ICOM_THIS_From_IPersistStream(IShellLinkImpl, iface);
378 TRACE("(%p)\n",This);
380 return IShellLinkA_AddRef((IShellLinkA*)This);
383 /************************************************************************
384 * IPersistStream_GetClassID
387 static HRESULT WINAPI IPersistStream_fnGetClassID(
388 IPersistStream* iface,
389 CLSID* pClassID)
391 _ICOM_THIS_From_IPersistStream(IShellLinkImpl, iface);
393 TRACE("(%p)\n", This);
395 if (pClassID==0)
396 return E_POINTER;
398 /* memcpy(pClassID, &CLSID_???, sizeof(CLSID_???)); */
400 return S_OK;
403 /************************************************************************
404 * IPersistStream_IsDirty (IPersistStream)
406 static HRESULT WINAPI IPersistStream_fnIsDirty(
407 IPersistStream* iface)
409 _ICOM_THIS_From_IPersistStream(IShellLinkImpl, iface);
411 TRACE("(%p)\n", This);
413 return S_OK;
417 static HRESULT Stream_LoadString( IStream* stm, BOOL unicode, LPWSTR *pstr )
419 DWORD count;
420 USHORT len;
421 LPVOID temp;
422 LPWSTR str;
423 HRESULT r;
425 TRACE("%p\n", stm);
427 count = 0;
428 r = IStream_Read(stm, &len, sizeof(len), &count);
429 if ( FAILED (r) || ( count != sizeof(len) ) )
430 return E_FAIL;
432 if( unicode )
433 len *= sizeof (WCHAR);
435 TRACE("reading %d\n", len);
436 temp = HeapAlloc(GetProcessHeap(), 0, len+sizeof(WCHAR));
437 if( !temp )
438 return E_OUTOFMEMORY;
439 count = 0;
440 r = IStream_Read(stm, temp, len, &count);
441 if( FAILED (r) || ( count != len ) )
443 HeapFree( GetProcessHeap(), 0, temp );
444 return E_FAIL;
447 TRACE("read %s\n", debugstr_an(temp,len));
449 /* convert to unicode if necessary */
450 if( !unicode )
452 count = MultiByteToWideChar( CP_ACP, 0, (LPSTR) temp, len, NULL, 0 );
453 str = HeapAlloc( GetProcessHeap(), 0, (count+1)*sizeof (WCHAR) );
454 if( str )
455 MultiByteToWideChar( CP_ACP, 0, (LPSTR) temp, len, str, count );
456 HeapFree( GetProcessHeap(), 0, temp );
458 else
460 count /= 2;
461 str = (LPWSTR) temp;
463 str[count] = 0;
465 *pstr = str;
467 return S_OK;
470 static HRESULT Stream_LoadLocation( IStream* stm )
472 DWORD size;
473 ULONG count;
474 HRESULT r;
475 LOCATION_INFO *loc;
477 TRACE("%p\n",stm);
479 r = IStream_Read( stm, &size, sizeof(size), &count );
480 if( FAILED( r ) )
481 return r;
482 if( count != sizeof(loc->dwTotalSize) )
483 return E_FAIL;
485 loc = HeapAlloc( GetProcessHeap(), 0, size );
486 if( ! loc )
487 return E_OUTOFMEMORY;
489 r = IStream_Read( stm, &loc->dwHeaderSize, size-sizeof(size), &count );
490 if( FAILED( r ) )
491 goto end;
492 if( count != (size - sizeof(size)) )
494 r = E_FAIL;
495 goto end;
497 loc->dwTotalSize = size;
499 TRACE("Read %ld bytes\n",count);
501 /* FIXME: do something useful with it */
502 HeapFree( GetProcessHeap(), 0, loc );
504 return S_OK;
505 end:
506 HeapFree( GetProcessHeap(), 0, loc );
507 return r;
510 /************************************************************************
511 * IPersistStream_Load (IPersistStream)
513 static HRESULT WINAPI IPersistStream_fnLoad(
514 IPersistStream* iface,
515 IStream* stm)
517 LINK_HEADER hdr;
518 ULONG dwBytesRead;
519 BOOL unicode;
520 WCHAR sTemp[MAX_PATH];
521 HRESULT r;
523 _ICOM_THIS_From_IPersistStream(IShellLinkImpl, iface);
525 TRACE("(%p)(%p)\n", This, stm);
527 if( !stm )
528 return STG_E_INVALIDPOINTER;
530 dwBytesRead = 0;
531 r = IStream_Read(stm, &hdr, sizeof(hdr), &dwBytesRead);
532 if( FAILED( r ) )
533 return r;
535 if( dwBytesRead != sizeof(hdr))
536 return E_FAIL;
537 if( hdr.dwSize != sizeof(hdr))
538 return E_FAIL;
539 if( !IsEqualIID(&hdr.MagicGuid, &CLSID_ShellLink) )
540 return E_FAIL;
542 /* if( hdr.dwFlags & SCF_PIDL ) */ /* FIXME: seems to always have a PIDL */
544 r = ILLoadFromStream( stm, &This->pPidl );
545 if( FAILED( r ) )
546 return r;
548 This->wHotKey = (WORD)hdr.wHotKey;
549 This->iIcoNdx = hdr.nIcon;
550 FileTimeToSystemTime (&hdr.Time1, &This->time1);
551 FileTimeToSystemTime (&hdr.Time2, &This->time2);
552 FileTimeToSystemTime (&hdr.Time3, &This->time3);
553 #if 1
554 GetDateFormatW(LOCALE_USER_DEFAULT,DATE_SHORTDATE,&This->time1, NULL, sTemp, 256);
555 TRACE("-- time1: %s\n", debugstr_w(sTemp) );
556 GetDateFormatW(LOCALE_USER_DEFAULT,DATE_SHORTDATE,&This->time2, NULL, sTemp, 256);
557 TRACE("-- time1: %s\n", debugstr_w(sTemp) );
558 GetDateFormatW(LOCALE_USER_DEFAULT,DATE_SHORTDATE,&This->time3, NULL, sTemp, 256);
559 TRACE("-- time1: %s\n", debugstr_w(sTemp) );
560 pdump (This->pPidl);
561 #endif
562 if( hdr.dwFlags & SCF_NORMAL )
563 r = Stream_LoadLocation( stm );
564 if( FAILED( r ) )
565 goto end;
566 unicode = hdr.dwFlags & SCF_UNICODE;
567 if( hdr.dwFlags & SCF_DESCRIPTION )
569 r = Stream_LoadString( stm, unicode, &This->sDescription );
570 TRACE("Description -> %s\n",debugstr_w(This->sDescription));
572 if( FAILED( r ) )
573 goto end;
575 if( hdr.dwFlags & SCF_RELATIVE )
577 r = Stream_LoadString( stm, unicode, &This->sPathRel );
578 TRACE("Relative Path-> %s\n",debugstr_w(This->sPathRel));
580 if( FAILED( r ) )
581 goto end;
583 if( hdr.dwFlags & SCF_WORKDIR )
585 r = Stream_LoadString( stm, unicode, &This->sWorkDir );
586 TRACE("Working Dir -> %s\n",debugstr_w(This->sWorkDir));
588 if( FAILED( r ) )
589 goto end;
591 if( hdr.dwFlags & SCF_ARGS )
593 r = Stream_LoadString( stm, unicode, &This->sArgs );
594 TRACE("Working Dir -> %s\n",debugstr_w(This->sArgs));
596 if( FAILED( r ) )
597 goto end;
599 if( hdr.dwFlags & SCF_CUSTOMICON )
601 r = Stream_LoadString( stm, unicode, &This->sIcoPath );
602 TRACE("Icon file -> %s\n",debugstr_w(This->sIcoPath));
604 if( FAILED( r ) )
605 goto end;
607 TRACE("OK\n");
609 pdump (This->pPidl);
611 return S_OK;
612 end:
613 return r;
616 /************************************************************************
617 * Stream_WriteString
619 * Helper function for IPersistStream_Save. Writes a unicode string
620 * with terminating nul byte to a stream, preceded by the its length.
622 static HRESULT Stream_WriteString( IStream* stm, LPCWSTR str )
624 USHORT len = lstrlenW( str ) + 1;
625 DWORD count;
626 HRESULT r;
628 r = IStream_Write( stm, &len, sizeof(len), &count );
629 if( FAILED( r ) )
630 return r;
632 len *= sizeof(WCHAR);
634 r = IStream_Write( stm, str, len, &count );
635 if( FAILED( r ) )
636 return r;
638 return S_OK;
641 static HRESULT Stream_WriteLocationInfo( IStream* stm, LPCWSTR filename )
643 LOCATION_INFO loc;
644 ULONG count;
646 FIXME("writing empty location info\n");
648 memset( &loc, 0, sizeof(loc) );
649 loc.dwTotalSize = sizeof(loc) - sizeof(loc.dwTotalSize);
651 /* FIXME: fill this in */
653 return IStream_Write( stm, &loc, loc.dwTotalSize, &count );
656 /************************************************************************
657 * IPersistStream_Save (IPersistStream)
659 * FIXME: makes assumptions about byte order
661 static HRESULT WINAPI IPersistStream_fnSave(
662 IPersistStream* iface,
663 IStream* stm,
664 BOOL fClearDirty)
666 static const WCHAR wOpen[] = {'o','p','e','n',0};
668 LINK_HEADER header;
669 WCHAR exePath[MAX_PATH];
670 ULONG count;
671 HRESULT r;
673 _ICOM_THIS_From_IPersistStream(IShellLinkImpl, iface);
675 TRACE("(%p) %p %x\n", This, stm, fClearDirty);
677 *exePath = '\0';
679 if (This->sPath)
681 SHELL_FindExecutable(NULL, This->sPath, wOpen, exePath, MAX_PATH, NULL, NULL, NULL, NULL);
683 * windows can create lnk files to executables that do not exist yet
684 * so if the executable does not exist the just trust the path they
685 * gave us
687 if( !*exePath ) strcpyW(exePath,This->sPath);
690 /* if there's no PIDL, generate one */
691 if( ! This->pPidl ) This->pPidl = ILCreateFromPathW(exePath);
693 memset(&header, 0, sizeof(header));
694 header.dwSize = sizeof(header);
695 memcpy(&header.MagicGuid, &CLSID_ShellLink, sizeof(header.MagicGuid) );
697 header.wHotKey = This->wHotKey;
698 header.nIcon = This->iIcoNdx;
699 header.dwFlags = SCF_UNICODE; /* strings are in unicode */
700 header.dwFlags |= SCF_NORMAL; /* how do we determine this ? */
701 if( This->pPidl )
702 header.dwFlags |= SCF_PIDL;
703 if( This->sDescription )
704 header.dwFlags |= SCF_DESCRIPTION;
705 if( This->sWorkDir )
706 header.dwFlags |= SCF_WORKDIR;
707 if( This->sArgs )
708 header.dwFlags |= SCF_ARGS;
709 if( This->sIcoPath )
710 header.dwFlags |= SCF_CUSTOMICON;
712 SystemTimeToFileTime ( &This->time1, &header.Time1 );
713 SystemTimeToFileTime ( &This->time2, &header.Time2 );
714 SystemTimeToFileTime ( &This->time3, &header.Time3 );
716 /* write the Shortcut header */
717 r = IStream_Write( stm, &header, sizeof(header), &count );
718 if( FAILED( r ) )
720 ERR("Write failed at %d\n",__LINE__);
721 return r;
724 TRACE("Writing pidl \n");
726 /* write the PIDL to the shortcut */
727 if( This->pPidl )
729 r = ILSaveToStream( stm, This->pPidl );
730 if( FAILED( r ) )
732 ERR("Failed to write PIDL at %d\n",__LINE__);
733 return r;
737 Stream_WriteLocationInfo( stm, exePath );
739 TRACE("Description = %s\n", debugstr_w(This->sDescription));
740 if( This->sDescription )
741 r = Stream_WriteString( stm, This->sDescription );
743 if( This->sPathRel )
744 r = Stream_WriteString( stm, This->sPathRel );
746 if( This->sWorkDir )
747 r = Stream_WriteString( stm, This->sWorkDir );
749 if( This->sArgs )
750 r = Stream_WriteString( stm, This->sArgs );
752 if( This->sIcoPath )
753 r = Stream_WriteString( stm, This->sIcoPath );
755 return S_OK;
758 /************************************************************************
759 * IPersistStream_GetSizeMax (IPersistStream)
761 static HRESULT WINAPI IPersistStream_fnGetSizeMax(
762 IPersistStream* iface,
763 ULARGE_INTEGER* pcbSize)
765 _ICOM_THIS_From_IPersistStream(IShellLinkImpl, iface);
767 TRACE("(%p)\n", This);
769 return E_NOTIMPL;
772 static IPersistStreamVtbl psvt =
774 IPersistStream_fnQueryInterface,
775 IPersistStream_fnAddRef,
776 IPersistStream_fnRelease,
777 IPersistStream_fnGetClassID,
778 IPersistStream_fnIsDirty,
779 IPersistStream_fnLoad,
780 IPersistStream_fnSave,
781 IPersistStream_fnGetSizeMax
784 /**************************************************************************
785 * IShellLink_Constructor
787 HRESULT WINAPI IShellLink_Constructor (
788 IUnknown * pUnkOuter,
789 REFIID riid,
790 LPVOID * ppv)
792 IShellLinkImpl * sl;
794 TRACE("unkOut=%p riid=%s\n",pUnkOuter, debugstr_guid(riid));
796 *ppv = NULL;
798 if(pUnkOuter) return CLASS_E_NOAGGREGATION;
799 sl = (IShellLinkImpl *) LocalAlloc(GMEM_ZEROINIT,sizeof(IShellLinkImpl));
800 if (!sl) return E_OUTOFMEMORY;
802 sl->ref = 1;
803 sl->lpVtbl = &slvt;
804 sl->lpvtblw = &slvtw;
805 sl->lpvtblPersistFile = &pfvt;
806 sl->lpvtblPersistStream = &psvt;
807 sl->iShowCmd = SW_SHOWNORMAL;
808 sl->bDirty = FALSE;
810 TRACE("(%p)->()\n",sl);
812 if (IsEqualIID(riid, &IID_IUnknown) ||
813 IsEqualIID(riid, &IID_IShellLinkA))
814 *ppv = sl;
815 else if (IsEqualIID(riid, &IID_IShellLinkW))
816 *ppv = &(sl->lpvtblw);
817 else {
818 LocalFree((HLOCAL)sl);
819 ERR("E_NOINTERFACE\n");
820 return E_NOINTERFACE;
823 return S_OK;
827 static BOOL SHELL_ExistsFileW(LPCWSTR path)
829 HANDLE hfile = CreateFileW(path, GENERIC_READ, FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL);
831 if (hfile != INVALID_HANDLE_VALUE) {
832 CloseHandle(hfile);
833 return TRUE;
834 } else
835 return FALSE;
838 /**************************************************************************
839 * ShellLink_UpdatePath
840 * update absolute path in sPath using relative path in sPathRel
842 static HRESULT ShellLink_UpdatePath(LPWSTR sPathRel, LPCWSTR path, LPCWSTR sWorkDir, LPWSTR* psPath)
844 if (!path || !psPath)
845 return E_INVALIDARG;
847 if (!*psPath && sPathRel) {
848 WCHAR buffer[2*MAX_PATH], abs_path[2*MAX_PATH];
849 LPWSTR final = NULL;
851 /* first try if [directory of link file] + [relative path] finds an existing file */
853 GetFullPathNameW( path, MAX_PATH*2, buffer, &final );
854 if( !final )
855 final = buffer;
856 lstrcpyW(final, sPathRel);
858 *abs_path = '\0';
860 if (SHELL_ExistsFileW(buffer)) {
861 if (!GetFullPathNameW(buffer, MAX_PATH, abs_path, &final))
862 lstrcpyW(abs_path, buffer);
863 } else {
864 /* try if [working directory] + [relative path] finds an existing file */
865 if (sWorkDir) {
866 lstrcpyW(buffer, sWorkDir);
867 lstrcpyW(PathAddBackslashW(buffer), sPathRel);
869 if (SHELL_ExistsFileW(buffer))
870 if (!GetFullPathNameW(buffer, MAX_PATH, abs_path, &final))
871 lstrcpyW(abs_path, buffer);
875 /* FIXME: This is even not enough - not all shell links can be resolved using this algorithm. */
876 if (!*abs_path)
877 lstrcpyW(abs_path, sPathRel);
879 *psPath = HeapAlloc(GetProcessHeap(), 0, (lstrlenW(abs_path)+1)*sizeof(WCHAR));
880 if (!*psPath)
881 return E_OUTOFMEMORY;
883 lstrcpyW(*psPath, abs_path);
886 return S_OK;
889 /**************************************************************************
890 * IShellLink_ConstructFromFile
892 HRESULT WINAPI IShellLink_ConstructFromFile (
893 IUnknown* pUnkOuter,
894 REFIID riid,
895 LPCITEMIDLIST pidl,
896 LPVOID* ppv
899 IShellLinkW* psl;
901 HRESULT hr = IShellLink_Constructor(NULL, riid, (LPVOID*)&psl);
903 if (SUCCEEDED(hr)) {
904 IPersistFile* ppf;
906 *ppv = NULL;
908 hr = IShellLinkW_QueryInterface(psl, &IID_IPersistFile, (LPVOID*)&ppf);
910 if (SUCCEEDED(hr)) {
911 WCHAR path[MAX_PATH];
913 if (SHGetPathFromIDListW(pidl, path))
914 hr = IPersistFile_Load(ppf, path, 0);
915 else
916 hr = E_FAIL;
918 if (SUCCEEDED(hr))
919 *ppv = (IUnknown*) psl;
921 IPersistFile_Release(ppf);
924 if (!*ppv)
925 IShellLinkW_Release(psl);
928 return hr;
931 /**************************************************************************
932 * IShellLinkA_QueryInterface
934 static HRESULT WINAPI IShellLinkA_fnQueryInterface( IShellLinkA * iface, REFIID riid, LPVOID *ppvObj)
936 ICOM_THIS(IShellLinkImpl, iface);
938 TRACE("(%p)->(\n\tIID:\t%s)\n",This,debugstr_guid(riid));
940 *ppvObj = NULL;
942 if(IsEqualIID(riid, &IID_IUnknown) ||
943 IsEqualIID(riid, &IID_IShellLinkA))
945 *ppvObj = This;
947 else if(IsEqualIID(riid, &IID_IShellLinkW))
949 *ppvObj = (IShellLinkW *)&(This->lpvtblw);
951 else if(IsEqualIID(riid, &IID_IPersistFile))
953 *ppvObj = (IPersistFile *)&(This->lpvtblPersistFile);
955 else if(IsEqualIID(riid, &IID_IPersistStream))
957 *ppvObj = (IPersistStream *)&(This->lpvtblPersistStream);
960 if(*ppvObj)
962 IUnknown_AddRef((IUnknown*)(*ppvObj));
963 TRACE("-- Interface: (%p)->(%p)\n",ppvObj,*ppvObj);
964 return S_OK;
966 TRACE("-- Interface: E_NOINTERFACE\n");
967 return E_NOINTERFACE;
969 /******************************************************************************
970 * IShellLinkA_AddRef
972 static ULONG WINAPI IShellLinkA_fnAddRef(IShellLinkA * iface)
974 ICOM_THIS(IShellLinkImpl, iface);
976 TRACE("(%p)->(count=%lu)\n",This,This->ref);
978 return ++(This->ref);
980 /******************************************************************************
981 * IShellLinkA_Release
983 static ULONG WINAPI IShellLinkA_fnRelease(IShellLinkA * iface)
985 ICOM_THIS(IShellLinkImpl, iface);
987 TRACE("(%p)->(count=%lu)\n",This,This->ref);
989 if (--(This->ref))
990 return This->ref;
992 TRACE("-- destroying IShellLink(%p)\n",This);
994 if (This->sIcoPath)
995 HeapFree(GetProcessHeap(), 0, This->sIcoPath);
997 if (This->sArgs)
998 HeapFree(GetProcessHeap(), 0, This->sArgs);
1000 if (This->sWorkDir)
1001 HeapFree(GetProcessHeap(), 0, This->sWorkDir);
1003 if (This->sDescription)
1004 HeapFree(GetProcessHeap(), 0, This->sDescription);
1006 if (This->sPath)
1007 HeapFree(GetProcessHeap(),0,This->sPath);
1009 if (This->pPidl)
1010 ILFree(This->pPidl);
1012 LocalFree((HANDLE)This);
1014 return 0;
1017 static HRESULT WINAPI IShellLinkA_fnGetPath(IShellLinkA * iface, LPSTR pszFile,
1018 INT cchMaxPath, WIN32_FIND_DATAA *pfd, DWORD fFlags)
1020 ICOM_THIS(IShellLinkImpl, iface);
1022 TRACE("(%p)->(pfile=%p len=%u find_data=%p flags=%lu)(%s)\n",
1023 This, pszFile, cchMaxPath, pfd, fFlags, debugstr_w(This->sPath));
1025 if( cchMaxPath )
1026 pszFile[0] = 0;
1027 if (This->sPath)
1028 WideCharToMultiByte( CP_ACP, 0, This->sPath, -1,
1029 pszFile, cchMaxPath, NULL, NULL);
1031 return NOERROR;
1034 static HRESULT WINAPI IShellLinkA_fnGetIDList(IShellLinkA * iface, LPITEMIDLIST * ppidl)
1036 ICOM_THIS(IShellLinkImpl, iface);
1038 TRACE("(%p)->(ppidl=%p)\n",This, ppidl);
1040 *ppidl = ILClone(This->pPidl);
1042 return NOERROR;
1045 static HRESULT WINAPI IShellLinkA_fnSetIDList(IShellLinkA * iface, LPCITEMIDLIST pidl)
1047 ICOM_THIS(IShellLinkImpl, iface);
1049 TRACE("(%p)->(pidl=%p)\n",This, pidl);
1051 if (This->pPidl)
1052 ILFree(This->pPidl);
1053 This->pPidl = ILClone (pidl);
1054 This->bDirty = TRUE;
1056 return S_OK;
1059 static HRESULT WINAPI IShellLinkA_fnGetDescription(IShellLinkA * iface, LPSTR pszName,INT cchMaxName)
1061 ICOM_THIS(IShellLinkImpl, iface);
1063 TRACE("(%p)->(%p len=%u)\n",This, pszName, cchMaxName);
1065 if( cchMaxName )
1066 pszName[0] = 0;
1067 if( This->sDescription )
1068 WideCharToMultiByte( CP_ACP, 0, This->sDescription, -1,
1069 pszName, cchMaxName, NULL, NULL);
1071 return S_OK;
1073 static HRESULT WINAPI IShellLinkA_fnSetDescription(IShellLinkA * iface, LPCSTR pszName)
1075 ICOM_THIS(IShellLinkImpl, iface);
1077 TRACE("(%p)->(pName=%s)\n", This, pszName);
1079 if (This->sDescription)
1080 HeapFree(GetProcessHeap(), 0, This->sDescription);
1081 This->sDescription = HEAP_strdupAtoW( GetProcessHeap(), 0, pszName);
1082 if ( !This->sDescription )
1083 return E_OUTOFMEMORY;
1085 This->bDirty = TRUE;
1087 return S_OK;
1090 static HRESULT WINAPI IShellLinkA_fnGetWorkingDirectory(IShellLinkA * iface, LPSTR pszDir,INT cchMaxPath)
1092 ICOM_THIS(IShellLinkImpl, iface);
1094 TRACE("(%p)->(%p len=%u)\n", This, pszDir, cchMaxPath);
1096 if( cchMaxPath )
1097 pszDir[0] = 0;
1098 if( This->sWorkDir )
1099 WideCharToMultiByte( CP_ACP, 0, This->sWorkDir, -1,
1100 pszDir, cchMaxPath, NULL, NULL);
1102 return S_OK;
1105 static HRESULT WINAPI IShellLinkA_fnSetWorkingDirectory(IShellLinkA * iface, LPCSTR pszDir)
1107 ICOM_THIS(IShellLinkImpl, iface);
1109 TRACE("(%p)->(dir=%s)\n",This, pszDir);
1111 if (This->sWorkDir)
1112 HeapFree(GetProcessHeap(), 0, This->sWorkDir);
1113 This->sWorkDir = HEAP_strdupAtoW( GetProcessHeap(), 0, pszDir);
1114 if ( !This->sWorkDir )
1115 return E_OUTOFMEMORY;
1117 This->bDirty = TRUE;
1119 return S_OK;
1122 static HRESULT WINAPI IShellLinkA_fnGetArguments(IShellLinkA * iface, LPSTR pszArgs,INT cchMaxPath)
1124 ICOM_THIS(IShellLinkImpl, iface);
1126 TRACE("(%p)->(%p len=%u)\n", This, pszArgs, cchMaxPath);
1128 if( cchMaxPath )
1129 pszArgs[0] = 0;
1130 if( This->sArgs )
1131 WideCharToMultiByte( CP_ACP, 0, This->sArgs, -1,
1132 pszArgs, cchMaxPath, NULL, NULL);
1134 return S_OK;
1137 static HRESULT WINAPI IShellLinkA_fnSetArguments(IShellLinkA * iface, LPCSTR pszArgs)
1139 ICOM_THIS(IShellLinkImpl, iface);
1141 TRACE("(%p)->(args=%s)\n",This, pszArgs);
1143 if (This->sArgs)
1144 HeapFree(GetProcessHeap(), 0, This->sArgs);
1145 This->sArgs = HEAP_strdupAtoW( GetProcessHeap(), 0, pszArgs);
1146 if( !This->sArgs )
1147 return E_OUTOFMEMORY;
1149 This->bDirty = TRUE;
1151 return S_OK;
1154 static HRESULT WINAPI IShellLinkA_fnGetHotkey(IShellLinkA * iface, WORD *pwHotkey)
1156 ICOM_THIS(IShellLinkImpl, iface);
1158 TRACE("(%p)->(%p)(0x%08x)\n",This, pwHotkey, This->wHotKey);
1160 *pwHotkey = This->wHotKey;
1162 return S_OK;
1165 static HRESULT WINAPI IShellLinkA_fnSetHotkey(IShellLinkA * iface, WORD wHotkey)
1167 ICOM_THIS(IShellLinkImpl, iface);
1169 TRACE("(%p)->(hotkey=%x)\n",This, wHotkey);
1171 This->wHotKey = wHotkey;
1172 This->bDirty = TRUE;
1174 return S_OK;
1177 static HRESULT WINAPI IShellLinkA_fnGetShowCmd(IShellLinkA * iface, INT *piShowCmd)
1179 ICOM_THIS(IShellLinkImpl, iface);
1181 TRACE("(%p)->(%p)\n",This, piShowCmd);
1182 *piShowCmd = This->iShowCmd;
1183 return S_OK;
1186 static HRESULT WINAPI IShellLinkA_fnSetShowCmd(IShellLinkA * iface, INT iShowCmd)
1188 ICOM_THIS(IShellLinkImpl, iface);
1190 TRACE("(%p) %d\n",This, iShowCmd);
1192 This->iShowCmd = iShowCmd;
1193 This->bDirty = TRUE;
1195 return NOERROR;
1198 static HRESULT SHELL_PidlGeticonLocationA(IShellFolder* psf, LPITEMIDLIST pidl, LPSTR pszIconPath, int cchIconPath, int* piIcon)
1200 LPCITEMIDLIST pidlLast;
1202 HRESULT hr = SHBindToParent(pidl, &IID_IShellFolder, (LPVOID*)&psf, &pidlLast);
1204 if (SUCCEEDED(hr)) {
1205 IExtractIconA* pei;
1207 hr = IShellFolder_GetUIObjectOf(psf, 0, 1, (LPCITEMIDLIST*)&pidlLast, &IID_IExtractIconA, NULL, (LPVOID*)&pei);
1209 if (SUCCEEDED(hr)) {
1210 hr = IExtractIconA_GetIconLocation(pei, 0, pszIconPath, MAX_PATH, piIcon, NULL);
1212 IExtractIconA_Release(pei);
1215 IShellFolder_Release(psf);
1218 return hr;
1221 static HRESULT WINAPI IShellLinkA_fnGetIconLocation(IShellLinkA * iface, LPSTR pszIconPath,INT cchIconPath,INT *piIcon)
1223 ICOM_THIS(IShellLinkImpl, iface);
1225 TRACE("(%p)->(%p len=%u iicon=%p)\n", This, pszIconPath, cchIconPath, piIcon);
1227 if (cchIconPath)
1228 pszIconPath[0] = 0;
1230 if (This->sIcoPath) {
1231 WideCharToMultiByte(CP_ACP, 0, This->sIcoPath, -1, pszIconPath, cchIconPath, NULL, NULL);
1232 *piIcon = This->iIcoNdx;
1233 return S_OK;
1236 if (This->pPidl || This->sPath) {
1237 IShellFolder* pdsk;
1239 HRESULT hr = SHGetDesktopFolder(&pdsk);
1241 if (SUCCEEDED(hr)) {
1242 /* first look for an icon using the PIDL (if present) */
1243 if (This->pPidl)
1244 hr = SHELL_PidlGeticonLocationA(pdsk, This->pPidl, pszIconPath, cchIconPath, piIcon);
1245 else
1246 hr = E_FAIL;
1248 /* if we couldn't find an icon yet, look for it using the file system path */
1249 if (FAILED(hr) && This->sPath) {
1250 LPITEMIDLIST pidl;
1252 hr = IShellFolder_ParseDisplayName(pdsk, 0, NULL, This->sPath, NULL, &pidl, NULL);
1254 if (SUCCEEDED(hr)) {
1255 hr = SHELL_PidlGeticonLocationA(pdsk, pidl, pszIconPath, cchIconPath, piIcon);
1257 SHFree(pidl);
1261 IShellFolder_Release(pdsk);
1264 return hr;
1265 } else
1266 return E_FAIL;
1269 static HRESULT WINAPI IShellLinkA_fnSetIconLocation(IShellLinkA * iface, LPCSTR pszIconPath,INT iIcon)
1271 ICOM_THIS(IShellLinkImpl, iface);
1273 TRACE("(%p)->(path=%s iicon=%u)\n",This, pszIconPath, iIcon);
1275 if (This->sIcoPath)
1276 HeapFree(GetProcessHeap(), 0, This->sIcoPath);
1277 This->sIcoPath = HEAP_strdupAtoW(GetProcessHeap(), 0, pszIconPath);
1278 if ( !This->sIcoPath )
1279 return E_OUTOFMEMORY;
1281 This->iIcoNdx = iIcon;
1282 This->bDirty = TRUE;
1284 return S_OK;
1287 static HRESULT WINAPI IShellLinkA_fnSetRelativePath(IShellLinkA * iface, LPCSTR pszPathRel, DWORD dwReserved)
1289 ICOM_THIS(IShellLinkImpl, iface);
1291 FIXME("(%p)->(path=%s %lx)\n",This, pszPathRel, dwReserved);
1293 if (This->sPathRel)
1294 HeapFree(GetProcessHeap(), 0, This->sPathRel);
1295 This->sPathRel = HEAP_strdupAtoW(GetProcessHeap(), 0, pszPathRel);
1296 This->bDirty = TRUE;
1298 return ShellLink_UpdatePath(This->sPathRel, This->sPath, This->sWorkDir, &This->sPath);
1301 static HRESULT WINAPI IShellLinkA_fnResolve(IShellLinkA * iface, HWND hwnd, DWORD fFlags)
1303 ICOM_THIS(IShellLinkImpl, iface);
1305 FIXME("(%p)->(hwnd=%p flags=%lx)\n",This, hwnd, fFlags);
1306 return S_OK;
1309 static HRESULT WINAPI IShellLinkA_fnSetPath(IShellLinkA * iface, LPCSTR pszFile)
1311 ICOM_THIS(IShellLinkImpl, iface);
1313 TRACE("(%p)->(path=%s)\n",This, pszFile);
1315 if (This->sPath)
1316 HeapFree(GetProcessHeap(), 0, This->sPath);
1317 This->sPath = HEAP_strdupAtoW(GetProcessHeap(), 0, pszFile);
1318 if( !This->sPath )
1319 return E_OUTOFMEMORY;
1321 This->bDirty = TRUE;
1323 return S_OK;
1326 /**************************************************************************
1327 * IShellLink Implementation
1330 static IShellLinkAVtbl slvt =
1332 IShellLinkA_fnQueryInterface,
1333 IShellLinkA_fnAddRef,
1334 IShellLinkA_fnRelease,
1335 IShellLinkA_fnGetPath,
1336 IShellLinkA_fnGetIDList,
1337 IShellLinkA_fnSetIDList,
1338 IShellLinkA_fnGetDescription,
1339 IShellLinkA_fnSetDescription,
1340 IShellLinkA_fnGetWorkingDirectory,
1341 IShellLinkA_fnSetWorkingDirectory,
1342 IShellLinkA_fnGetArguments,
1343 IShellLinkA_fnSetArguments,
1344 IShellLinkA_fnGetHotkey,
1345 IShellLinkA_fnSetHotkey,
1346 IShellLinkA_fnGetShowCmd,
1347 IShellLinkA_fnSetShowCmd,
1348 IShellLinkA_fnGetIconLocation,
1349 IShellLinkA_fnSetIconLocation,
1350 IShellLinkA_fnSetRelativePath,
1351 IShellLinkA_fnResolve,
1352 IShellLinkA_fnSetPath
1356 /**************************************************************************
1357 * IShellLinkW_fnQueryInterface
1359 static HRESULT WINAPI IShellLinkW_fnQueryInterface(
1360 IShellLinkW * iface, REFIID riid, LPVOID *ppvObj)
1362 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1364 return IShellLinkA_QueryInterface((IShellLinkA*)This, riid, ppvObj);
1367 /******************************************************************************
1368 * IShellLinkW_fnAddRef
1370 static ULONG WINAPI IShellLinkW_fnAddRef(IShellLinkW * iface)
1372 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1374 TRACE("(%p)->(count=%lu)\n",This,This->ref);
1376 return IShellLinkA_AddRef((IShellLinkA*)This);
1378 /******************************************************************************
1379 * IShellLinkW_fnRelease
1382 static ULONG WINAPI IShellLinkW_fnRelease(IShellLinkW * iface)
1384 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1386 TRACE("(%p)->(count=%lu)\n",This,This->ref);
1388 return IShellLinkA_Release((IShellLinkA*)This);
1391 static HRESULT WINAPI IShellLinkW_fnGetPath(IShellLinkW * iface, LPWSTR pszFile,INT cchMaxPath, WIN32_FIND_DATAW *pfd, DWORD fFlags)
1393 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1395 FIXME("(%p)->(pfile=%p len=%u find_data=%p flags=%lu)\n",This, pszFile, cchMaxPath, pfd, fFlags);
1396 if( cchMaxPath )
1397 pszFile[0] = 0;
1398 if( This->sPath )
1399 lstrcpynW( pszFile, This->sPath, cchMaxPath );
1401 return NOERROR;
1404 static HRESULT WINAPI IShellLinkW_fnGetIDList(IShellLinkW * iface, LPITEMIDLIST * ppidl)
1406 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1408 TRACE("(%p)->(ppidl=%p)\n",This, ppidl);
1410 if( This->pPidl)
1411 *ppidl = ILClone( This->pPidl );
1412 else
1413 *ppidl = NULL;
1415 return S_OK;
1418 static HRESULT WINAPI IShellLinkW_fnSetIDList(IShellLinkW * iface, LPCITEMIDLIST pidl)
1420 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1422 TRACE("(%p)->(pidl=%p)\n",This, pidl);
1424 if( This->pPidl )
1425 ILFree( This->pPidl );
1426 This->pPidl = ILClone( pidl );
1427 if( !This->pPidl )
1428 return E_FAIL;
1430 This->bDirty = TRUE;
1432 return S_OK;
1435 static HRESULT WINAPI IShellLinkW_fnGetDescription(IShellLinkW * iface, LPWSTR pszName,INT cchMaxName)
1437 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1439 TRACE("(%p)->(%p len=%u)\n",This, pszName, cchMaxName);
1441 if( cchMaxName )
1442 pszName[0] = 0;
1443 if( This->sDescription )
1444 lstrcpynW( pszName, This->sDescription, cchMaxName );
1446 return S_OK;
1449 static HRESULT WINAPI IShellLinkW_fnSetDescription(IShellLinkW * iface, LPCWSTR pszName)
1451 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1453 TRACE("(%p)->(desc=%s)\n",This, debugstr_w(pszName));
1455 if (This->sDescription)
1456 HeapFree(GetProcessHeap(), 0, This->sDescription);
1457 This->sDescription = HeapAlloc( GetProcessHeap(), 0,
1458 (lstrlenW( pszName )+1)*sizeof(WCHAR) );
1459 if ( !This->sDescription )
1460 return E_OUTOFMEMORY;
1462 lstrcpyW( This->sDescription, pszName );
1463 This->bDirty = TRUE;
1465 return S_OK;
1468 static HRESULT WINAPI IShellLinkW_fnGetWorkingDirectory(IShellLinkW * iface, LPWSTR pszDir,INT cchMaxPath)
1470 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1472 TRACE("(%p)->(%p len %u)\n", This, pszDir, cchMaxPath);
1474 if( cchMaxPath )
1475 pszDir[0] = 0;
1476 if( This->sWorkDir )
1477 lstrcpynW( pszDir, This->sWorkDir, cchMaxPath );
1479 return S_OK;
1482 static HRESULT WINAPI IShellLinkW_fnSetWorkingDirectory(IShellLinkW * iface, LPCWSTR pszDir)
1484 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1486 TRACE("(%p)->(dir=%s)\n",This, debugstr_w(pszDir));
1488 if (This->sWorkDir)
1489 HeapFree(GetProcessHeap(), 0, This->sWorkDir);
1490 This->sWorkDir = HeapAlloc( GetProcessHeap(), 0,
1491 (lstrlenW( pszDir )+1)*sizeof (WCHAR) );
1492 if ( !This->sWorkDir )
1493 return E_OUTOFMEMORY;
1494 lstrcpyW( This->sWorkDir, pszDir );
1495 This->bDirty = TRUE;
1497 return S_OK;
1500 static HRESULT WINAPI IShellLinkW_fnGetArguments(IShellLinkW * iface, LPWSTR pszArgs,INT cchMaxPath)
1502 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1504 TRACE("(%p)->(%p len=%u)\n", This, pszArgs, cchMaxPath);
1506 if( cchMaxPath )
1507 pszArgs[0] = 0;
1508 if( This->sArgs )
1509 lstrcpynW( pszArgs, This->sArgs, cchMaxPath );
1511 return NOERROR;
1514 static HRESULT WINAPI IShellLinkW_fnSetArguments(IShellLinkW * iface, LPCWSTR pszArgs)
1516 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1518 TRACE("(%p)->(args=%s)\n",This, debugstr_w(pszArgs));
1520 if (This->sArgs)
1521 HeapFree(GetProcessHeap(), 0, This->sArgs);
1522 This->sArgs = HeapAlloc( GetProcessHeap(), 0,
1523 (lstrlenW( pszArgs )+1)*sizeof (WCHAR) );
1524 if ( !This->sArgs )
1525 return E_OUTOFMEMORY;
1526 lstrcpyW( This->sArgs, pszArgs );
1527 This->bDirty = TRUE;
1529 return S_OK;
1532 static HRESULT WINAPI IShellLinkW_fnGetHotkey(IShellLinkW * iface, WORD *pwHotkey)
1534 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1536 TRACE("(%p)->(%p)\n",This, pwHotkey);
1538 *pwHotkey=This->wHotKey;
1540 return S_OK;
1543 static HRESULT WINAPI IShellLinkW_fnSetHotkey(IShellLinkW * iface, WORD wHotkey)
1545 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1547 TRACE("(%p)->(hotkey=%x)\n",This, wHotkey);
1549 This->wHotKey = wHotkey;
1550 This->bDirty = TRUE;
1552 return S_OK;
1555 static HRESULT WINAPI IShellLinkW_fnGetShowCmd(IShellLinkW * iface, INT *piShowCmd)
1557 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1559 TRACE("(%p)->(%p)\n",This, piShowCmd);
1561 *piShowCmd = This->iShowCmd;
1563 return S_OK;
1566 static HRESULT WINAPI IShellLinkW_fnSetShowCmd(IShellLinkW * iface, INT iShowCmd)
1568 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1570 This->iShowCmd = iShowCmd;
1571 This->bDirty = TRUE;
1573 return S_OK;
1576 static HRESULT SHELL_PidlGeticonLocationW(IShellFolder* psf, LPITEMIDLIST pidl, LPWSTR pszIconPath, int cchIconPath, int* piIcon)
1578 LPCITEMIDLIST pidlLast;
1580 HRESULT hr = SHBindToParent(pidl, &IID_IShellFolder, (LPVOID*)&psf, &pidlLast);
1582 if (SUCCEEDED(hr)) {
1583 IExtractIconW* pei;
1585 hr = IShellFolder_GetUIObjectOf(psf, 0, 1, (LPCITEMIDLIST*)&pidlLast, &IID_IExtractIconW, NULL, (LPVOID*)&pei);
1587 if (SUCCEEDED(hr)) {
1588 hr = IExtractIconW_GetIconLocation(pei, 0, pszIconPath, MAX_PATH, piIcon, NULL);
1590 IExtractIconW_Release(pei);
1593 IShellFolder_Release(psf);
1596 return hr;
1599 static HRESULT WINAPI IShellLinkW_fnGetIconLocation(IShellLinkW * iface, LPWSTR pszIconPath,INT cchIconPath,INT *piIcon)
1601 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1603 TRACE("(%p)->(%p len=%u iicon=%p)\n", This, pszIconPath, cchIconPath, piIcon);
1605 if (cchIconPath)
1606 pszIconPath[0] = 0;
1608 if (This->sIcoPath) {
1609 lstrcpynW(pszIconPath, This->sIcoPath, cchIconPath);
1610 *piIcon = This->iIcoNdx;
1611 return S_OK;
1614 if (This->pPidl || This->sPath) {
1615 IShellFolder* pdsk;
1617 HRESULT hr = SHGetDesktopFolder(&pdsk);
1619 if (SUCCEEDED(hr)) {
1620 /* first look for an icon using the PIDL (if present) */
1621 if (This->pPidl)
1622 hr = SHELL_PidlGeticonLocationW(pdsk, This->pPidl, pszIconPath, cchIconPath, piIcon);
1623 else
1624 hr = E_FAIL;
1626 /* if we couldn't find an icon yet, look for it using the file system path */
1627 if (FAILED(hr) && This->sPath) {
1628 LPITEMIDLIST pidl;
1630 hr = IShellFolder_ParseDisplayName(pdsk, 0, NULL, This->sPath, NULL, &pidl, NULL);
1632 if (SUCCEEDED(hr)) {
1633 hr = SHELL_PidlGeticonLocationW(pdsk, pidl, pszIconPath, cchIconPath, piIcon);
1635 SHFree(pidl);
1639 IShellFolder_Release(pdsk);
1642 return hr;
1643 } else
1644 return E_FAIL;
1647 static HRESULT WINAPI IShellLinkW_fnSetIconLocation(IShellLinkW * iface, LPCWSTR pszIconPath,INT iIcon)
1649 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1651 TRACE("(%p)->(path=%s iicon=%u)\n",This, debugstr_w(pszIconPath), iIcon);
1653 if (This->sIcoPath)
1654 HeapFree(GetProcessHeap(), 0, This->sIcoPath);
1655 This->sIcoPath = HeapAlloc( GetProcessHeap(), 0,
1656 (lstrlenW( pszIconPath )+1)*sizeof (WCHAR) );
1657 if ( !This->sIcoPath )
1658 return E_OUTOFMEMORY;
1659 lstrcpyW( This->sIcoPath, pszIconPath );
1661 This->iIcoNdx = iIcon;
1662 This->bDirty = TRUE;
1664 return S_OK;
1667 static HRESULT WINAPI IShellLinkW_fnSetRelativePath(IShellLinkW * iface, LPCWSTR pszPathRel, DWORD dwReserved)
1669 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1671 TRACE("(%p)->(path=%s %lx)\n",This, debugstr_w(pszPathRel), dwReserved);
1673 if (This->sPathRel)
1674 HeapFree(GetProcessHeap(), 0, This->sPathRel);
1675 This->sPathRel = HeapAlloc( GetProcessHeap(), 0,
1676 (lstrlenW( pszPathRel )+1) * sizeof (WCHAR) );
1677 if ( !This->sPathRel )
1678 return E_OUTOFMEMORY;
1679 lstrcpyW( This->sPathRel, pszPathRel );
1680 This->bDirty = TRUE;
1682 return ShellLink_UpdatePath(This->sPathRel, This->sPath, This->sWorkDir, &This->sPath);
1685 static HRESULT WINAPI IShellLinkW_fnResolve(IShellLinkW * iface, HWND hwnd, DWORD fFlags)
1687 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1689 FIXME("(%p)->(hwnd=%p flags=%lx)\n",This, hwnd, fFlags);
1691 return S_OK;
1694 static HRESULT WINAPI IShellLinkW_fnSetPath(IShellLinkW * iface, LPCWSTR pszFile)
1696 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1698 TRACE("(%p)->(path=%s)\n",This, debugstr_w(pszFile));
1700 if (This->sPath)
1701 HeapFree(GetProcessHeap(), 0, This->sPath);
1702 This->sPath = HeapAlloc( GetProcessHeap(), 0,
1703 (lstrlenW( pszFile )+1) * sizeof (WCHAR) );
1704 if ( !This->sPath )
1705 return E_OUTOFMEMORY;
1707 lstrcpyW( This->sPath, pszFile );
1708 This->bDirty = TRUE;
1710 return S_OK;
1713 /**************************************************************************
1714 * IShellLinkW Implementation
1717 static IShellLinkWVtbl slvtw =
1719 IShellLinkW_fnQueryInterface,
1720 IShellLinkW_fnAddRef,
1721 IShellLinkW_fnRelease,
1722 IShellLinkW_fnGetPath,
1723 IShellLinkW_fnGetIDList,
1724 IShellLinkW_fnSetIDList,
1725 IShellLinkW_fnGetDescription,
1726 IShellLinkW_fnSetDescription,
1727 IShellLinkW_fnGetWorkingDirectory,
1728 IShellLinkW_fnSetWorkingDirectory,
1729 IShellLinkW_fnGetArguments,
1730 IShellLinkW_fnSetArguments,
1731 IShellLinkW_fnGetHotkey,
1732 IShellLinkW_fnSetHotkey,
1733 IShellLinkW_fnGetShowCmd,
1734 IShellLinkW_fnSetShowCmd,
1735 IShellLinkW_fnGetIconLocation,
1736 IShellLinkW_fnSetIconLocation,
1737 IShellLinkW_fnSetRelativePath,
1738 IShellLinkW_fnResolve,
1739 IShellLinkW_fnSetPath