Add support for HCBT_SYSCOMMAND hook, add logging for HCBT_SYSCOMMAND
[wine.git] / dlls / shell32 / shelllink.c
blob34a4182a7dd066673abbf0978fa52a7f427f2b4a
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 return NOERROR;
1033 static HRESULT WINAPI IShellLinkA_fnGetIDList(IShellLinkA * iface, LPITEMIDLIST * ppidl)
1035 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1037 TRACE("(%p)->(ppidl=%p)\n",This, ppidl);
1039 *ppidl = ILClone(This->pPidl);
1041 return NOERROR;
1044 static HRESULT WINAPI IShellLinkA_fnSetIDList(IShellLinkA * iface, LPCITEMIDLIST pidl)
1046 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1048 TRACE("(%p)->(pidl=%p)\n",This, pidl);
1050 if (This->pPidl)
1051 ILFree(This->pPidl);
1052 This->pPidl = ILClone (pidl);
1053 This->bDirty = TRUE;
1055 return S_OK;
1058 static HRESULT WINAPI IShellLinkA_fnGetDescription(IShellLinkA * iface, LPSTR pszName,INT cchMaxName)
1060 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1062 TRACE("(%p)->(%p len=%u)\n",This, pszName, cchMaxName);
1064 if( cchMaxName )
1065 pszName[0] = 0;
1066 if( This->sDescription )
1067 WideCharToMultiByte( CP_ACP, 0, This->sDescription, -1,
1068 pszName, cchMaxName, NULL, NULL);
1070 return S_OK;
1072 static HRESULT WINAPI IShellLinkA_fnSetDescription(IShellLinkA * iface, LPCSTR pszName)
1074 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1076 TRACE("(%p)->(pName=%s)\n", This, pszName);
1078 if (This->sDescription)
1079 HeapFree(GetProcessHeap(), 0, This->sDescription);
1080 This->sDescription = HEAP_strdupAtoW( GetProcessHeap(), 0, pszName);
1081 if ( !This->sDescription )
1082 return E_OUTOFMEMORY;
1084 This->bDirty = TRUE;
1086 return S_OK;
1089 static HRESULT WINAPI IShellLinkA_fnGetWorkingDirectory(IShellLinkA * iface, LPSTR pszDir,INT cchMaxPath)
1091 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1093 TRACE("(%p)->(%p len=%u)\n", This, pszDir, cchMaxPath);
1095 if( cchMaxPath )
1096 pszDir[0] = 0;
1097 if( This->sWorkDir )
1098 WideCharToMultiByte( CP_ACP, 0, This->sWorkDir, -1,
1099 pszDir, cchMaxPath, NULL, NULL);
1101 return S_OK;
1104 static HRESULT WINAPI IShellLinkA_fnSetWorkingDirectory(IShellLinkA * iface, LPCSTR pszDir)
1106 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1108 TRACE("(%p)->(dir=%s)\n",This, pszDir);
1110 if (This->sWorkDir)
1111 HeapFree(GetProcessHeap(), 0, This->sWorkDir);
1112 This->sWorkDir = HEAP_strdupAtoW( GetProcessHeap(), 0, pszDir);
1113 if ( !This->sWorkDir )
1114 return E_OUTOFMEMORY;
1116 This->bDirty = TRUE;
1118 return S_OK;
1121 static HRESULT WINAPI IShellLinkA_fnGetArguments(IShellLinkA * iface, LPSTR pszArgs,INT cchMaxPath)
1123 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1125 TRACE("(%p)->(%p len=%u)\n", This, pszArgs, cchMaxPath);
1127 if( cchMaxPath )
1128 pszArgs[0] = 0;
1129 if( This->sArgs )
1130 WideCharToMultiByte( CP_ACP, 0, This->sArgs, -1,
1131 pszArgs, cchMaxPath, NULL, NULL);
1133 return S_OK;
1136 static HRESULT WINAPI IShellLinkA_fnSetArguments(IShellLinkA * iface, LPCSTR pszArgs)
1138 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1140 TRACE("(%p)->(args=%s)\n",This, pszArgs);
1142 if (This->sArgs)
1143 HeapFree(GetProcessHeap(), 0, This->sArgs);
1144 This->sArgs = HEAP_strdupAtoW( GetProcessHeap(), 0, pszArgs);
1145 if( !This->sArgs )
1146 return E_OUTOFMEMORY;
1148 This->bDirty = TRUE;
1150 return S_OK;
1153 static HRESULT WINAPI IShellLinkA_fnGetHotkey(IShellLinkA * iface, WORD *pwHotkey)
1155 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1157 TRACE("(%p)->(%p)(0x%08x)\n",This, pwHotkey, This->wHotKey);
1159 *pwHotkey = This->wHotKey;
1161 return S_OK;
1164 static HRESULT WINAPI IShellLinkA_fnSetHotkey(IShellLinkA * iface, WORD wHotkey)
1166 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1168 TRACE("(%p)->(hotkey=%x)\n",This, wHotkey);
1170 This->wHotKey = wHotkey;
1171 This->bDirty = TRUE;
1173 return S_OK;
1176 static HRESULT WINAPI IShellLinkA_fnGetShowCmd(IShellLinkA * iface, INT *piShowCmd)
1178 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1180 TRACE("(%p)->(%p)\n",This, piShowCmd);
1181 *piShowCmd = This->iShowCmd;
1182 return S_OK;
1185 static HRESULT WINAPI IShellLinkA_fnSetShowCmd(IShellLinkA * iface, INT iShowCmd)
1187 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1189 TRACE("(%p) %d\n",This, iShowCmd);
1191 This->iShowCmd = iShowCmd;
1192 This->bDirty = TRUE;
1194 return NOERROR;
1197 static HRESULT SHELL_PidlGeticonLocationA(IShellFolder* psf, LPITEMIDLIST pidl, LPSTR pszIconPath, int cchIconPath, int* piIcon)
1199 LPCITEMIDLIST pidlLast;
1201 HRESULT hr = SHBindToParent(pidl, &IID_IShellFolder, (LPVOID*)&psf, &pidlLast);
1203 if (SUCCEEDED(hr)) {
1204 IExtractIconA* pei;
1206 hr = IShellFolder_GetUIObjectOf(psf, 0, 1, (LPCITEMIDLIST*)&pidlLast, &IID_IExtractIconA, NULL, (LPVOID*)&pei);
1208 if (SUCCEEDED(hr)) {
1209 hr = IExtractIconA_GetIconLocation(pei, 0, pszIconPath, MAX_PATH, piIcon, NULL);
1211 IExtractIconA_Release(pei);
1214 IShellFolder_Release(psf);
1217 return hr;
1220 static HRESULT WINAPI IShellLinkA_fnGetIconLocation(IShellLinkA * iface, LPSTR pszIconPath,INT cchIconPath,INT *piIcon)
1222 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1224 TRACE("(%p)->(%p len=%u iicon=%p)\n", This, pszIconPath, cchIconPath, piIcon);
1226 if (cchIconPath)
1227 pszIconPath[0] = 0;
1229 if (This->sIcoPath) {
1230 WideCharToMultiByte(CP_ACP, 0, This->sIcoPath, -1, pszIconPath, cchIconPath, NULL, NULL);
1231 *piIcon = This->iIcoNdx;
1232 return S_OK;
1235 if (This->pPidl || This->sPath) {
1236 IShellFolder* pdsk;
1238 HRESULT hr = SHGetDesktopFolder(&pdsk);
1240 if (SUCCEEDED(hr)) {
1241 /* first look for an icon using the PIDL (if present) */
1242 if (This->pPidl)
1243 hr = SHELL_PidlGeticonLocationA(pdsk, This->pPidl, pszIconPath, cchIconPath, piIcon);
1244 else
1245 hr = E_FAIL;
1247 /* if we couldn't find an icon yet, look for it using the file system path */
1248 if (FAILED(hr) && This->sPath) {
1249 LPITEMIDLIST pidl;
1251 hr = IShellFolder_ParseDisplayName(pdsk, 0, NULL, This->sPath, NULL, &pidl, NULL);
1253 if (SUCCEEDED(hr)) {
1254 hr = SHELL_PidlGeticonLocationA(pdsk, pidl, pszIconPath, cchIconPath, piIcon);
1256 SHFree(pidl);
1260 IShellFolder_Release(pdsk);
1263 return hr;
1264 } else
1265 return E_FAIL;
1268 static HRESULT WINAPI IShellLinkA_fnSetIconLocation(IShellLinkA * iface, LPCSTR pszIconPath,INT iIcon)
1270 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1272 TRACE("(%p)->(path=%s iicon=%u)\n",This, pszIconPath, iIcon);
1274 if (This->sIcoPath)
1275 HeapFree(GetProcessHeap(), 0, This->sIcoPath);
1276 This->sIcoPath = HEAP_strdupAtoW(GetProcessHeap(), 0, pszIconPath);
1277 if ( !This->sIcoPath )
1278 return E_OUTOFMEMORY;
1280 This->iIcoNdx = iIcon;
1281 This->bDirty = TRUE;
1283 return S_OK;
1286 static HRESULT WINAPI IShellLinkA_fnSetRelativePath(IShellLinkA * iface, LPCSTR pszPathRel, DWORD dwReserved)
1288 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1290 FIXME("(%p)->(path=%s %lx)\n",This, pszPathRel, dwReserved);
1292 if (This->sPathRel)
1293 HeapFree(GetProcessHeap(), 0, This->sPathRel);
1294 This->sPathRel = HEAP_strdupAtoW(GetProcessHeap(), 0, pszPathRel);
1295 This->bDirty = TRUE;
1297 return ShellLink_UpdatePath(This->sPathRel, This->sPath, This->sWorkDir, &This->sPath);
1300 static HRESULT WINAPI IShellLinkA_fnResolve(IShellLinkA * iface, HWND hwnd, DWORD fFlags)
1302 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1304 FIXME("(%p)->(hwnd=%p flags=%lx)\n",This, hwnd, fFlags);
1305 return S_OK;
1308 static HRESULT WINAPI IShellLinkA_fnSetPath(IShellLinkA * iface, LPCSTR pszFile)
1310 IShellLinkImpl *This = (IShellLinkImpl *)iface;
1312 TRACE("(%p)->(path=%s)\n",This, pszFile);
1314 if (This->sPath)
1315 HeapFree(GetProcessHeap(), 0, This->sPath);
1316 This->sPath = HEAP_strdupAtoW(GetProcessHeap(), 0, pszFile);
1317 if( !This->sPath )
1318 return E_OUTOFMEMORY;
1320 This->bDirty = TRUE;
1322 return S_OK;
1325 /**************************************************************************
1326 * IShellLink Implementation
1329 static IShellLinkAVtbl slvt =
1331 IShellLinkA_fnQueryInterface,
1332 IShellLinkA_fnAddRef,
1333 IShellLinkA_fnRelease,
1334 IShellLinkA_fnGetPath,
1335 IShellLinkA_fnGetIDList,
1336 IShellLinkA_fnSetIDList,
1337 IShellLinkA_fnGetDescription,
1338 IShellLinkA_fnSetDescription,
1339 IShellLinkA_fnGetWorkingDirectory,
1340 IShellLinkA_fnSetWorkingDirectory,
1341 IShellLinkA_fnGetArguments,
1342 IShellLinkA_fnSetArguments,
1343 IShellLinkA_fnGetHotkey,
1344 IShellLinkA_fnSetHotkey,
1345 IShellLinkA_fnGetShowCmd,
1346 IShellLinkA_fnSetShowCmd,
1347 IShellLinkA_fnGetIconLocation,
1348 IShellLinkA_fnSetIconLocation,
1349 IShellLinkA_fnSetRelativePath,
1350 IShellLinkA_fnResolve,
1351 IShellLinkA_fnSetPath
1355 /**************************************************************************
1356 * IShellLinkW_fnQueryInterface
1358 static HRESULT WINAPI IShellLinkW_fnQueryInterface(
1359 IShellLinkW * iface, REFIID riid, LPVOID *ppvObj)
1361 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1363 return IShellLinkA_QueryInterface((IShellLinkA*)This, riid, ppvObj);
1366 /******************************************************************************
1367 * IShellLinkW_fnAddRef
1369 static ULONG WINAPI IShellLinkW_fnAddRef(IShellLinkW * iface)
1371 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1373 TRACE("(%p)->(count=%lu)\n",This,This->ref);
1375 return IShellLinkA_AddRef((IShellLinkA*)This);
1377 /******************************************************************************
1378 * IShellLinkW_fnRelease
1381 static ULONG WINAPI IShellLinkW_fnRelease(IShellLinkW * iface)
1383 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1385 TRACE("(%p)->(count=%lu)\n",This,This->ref);
1387 return IShellLinkA_Release((IShellLinkA*)This);
1390 static HRESULT WINAPI IShellLinkW_fnGetPath(IShellLinkW * iface, LPWSTR pszFile,INT cchMaxPath, WIN32_FIND_DATAW *pfd, DWORD fFlags)
1392 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1394 FIXME("(%p)->(pfile=%p len=%u find_data=%p flags=%lu)\n",This, pszFile, cchMaxPath, pfd, fFlags);
1395 if( cchMaxPath )
1396 pszFile[0] = 0;
1397 if( This->sPath )
1398 lstrcpynW( pszFile, This->sPath, cchMaxPath );
1400 return NOERROR;
1403 static HRESULT WINAPI IShellLinkW_fnGetIDList(IShellLinkW * iface, LPITEMIDLIST * ppidl)
1405 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1407 TRACE("(%p)->(ppidl=%p)\n",This, ppidl);
1409 if( This->pPidl)
1410 *ppidl = ILClone( This->pPidl );
1411 else
1412 *ppidl = NULL;
1414 return S_OK;
1417 static HRESULT WINAPI IShellLinkW_fnSetIDList(IShellLinkW * iface, LPCITEMIDLIST pidl)
1419 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1421 TRACE("(%p)->(pidl=%p)\n",This, pidl);
1423 if( This->pPidl )
1424 ILFree( This->pPidl );
1425 This->pPidl = ILClone( pidl );
1426 if( !This->pPidl )
1427 return E_FAIL;
1429 This->bDirty = TRUE;
1431 return S_OK;
1434 static HRESULT WINAPI IShellLinkW_fnGetDescription(IShellLinkW * iface, LPWSTR pszName,INT cchMaxName)
1436 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1438 TRACE("(%p)->(%p len=%u)\n",This, pszName, cchMaxName);
1440 if( cchMaxName )
1441 pszName[0] = 0;
1442 if( This->sDescription )
1443 lstrcpynW( pszName, This->sDescription, cchMaxName );
1445 return S_OK;
1448 static HRESULT WINAPI IShellLinkW_fnSetDescription(IShellLinkW * iface, LPCWSTR pszName)
1450 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1452 TRACE("(%p)->(desc=%s)\n",This, debugstr_w(pszName));
1454 if (This->sDescription)
1455 HeapFree(GetProcessHeap(), 0, This->sDescription);
1456 This->sDescription = HeapAlloc( GetProcessHeap(), 0,
1457 (lstrlenW( pszName )+1)*sizeof(WCHAR) );
1458 if ( !This->sDescription )
1459 return E_OUTOFMEMORY;
1461 lstrcpyW( This->sDescription, pszName );
1462 This->bDirty = TRUE;
1464 return S_OK;
1467 static HRESULT WINAPI IShellLinkW_fnGetWorkingDirectory(IShellLinkW * iface, LPWSTR pszDir,INT cchMaxPath)
1469 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1471 TRACE("(%p)->(%p len %u)\n", This, pszDir, cchMaxPath);
1473 if( cchMaxPath )
1474 pszDir[0] = 0;
1475 if( This->sWorkDir )
1476 lstrcpynW( pszDir, This->sWorkDir, cchMaxPath );
1478 return S_OK;
1481 static HRESULT WINAPI IShellLinkW_fnSetWorkingDirectory(IShellLinkW * iface, LPCWSTR pszDir)
1483 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1485 TRACE("(%p)->(dir=%s)\n",This, debugstr_w(pszDir));
1487 if (This->sWorkDir)
1488 HeapFree(GetProcessHeap(), 0, This->sWorkDir);
1489 This->sWorkDir = HeapAlloc( GetProcessHeap(), 0,
1490 (lstrlenW( pszDir )+1)*sizeof (WCHAR) );
1491 if ( !This->sWorkDir )
1492 return E_OUTOFMEMORY;
1493 lstrcpyW( This->sWorkDir, pszDir );
1494 This->bDirty = TRUE;
1496 return S_OK;
1499 static HRESULT WINAPI IShellLinkW_fnGetArguments(IShellLinkW * iface, LPWSTR pszArgs,INT cchMaxPath)
1501 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1503 TRACE("(%p)->(%p len=%u)\n", This, pszArgs, cchMaxPath);
1505 if( cchMaxPath )
1506 pszArgs[0] = 0;
1507 if( This->sArgs )
1508 lstrcpynW( pszArgs, This->sArgs, cchMaxPath );
1510 return NOERROR;
1513 static HRESULT WINAPI IShellLinkW_fnSetArguments(IShellLinkW * iface, LPCWSTR pszArgs)
1515 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1517 TRACE("(%p)->(args=%s)\n",This, debugstr_w(pszArgs));
1519 if (This->sArgs)
1520 HeapFree(GetProcessHeap(), 0, This->sArgs);
1521 This->sArgs = HeapAlloc( GetProcessHeap(), 0,
1522 (lstrlenW( pszArgs )+1)*sizeof (WCHAR) );
1523 if ( !This->sArgs )
1524 return E_OUTOFMEMORY;
1525 lstrcpyW( This->sArgs, pszArgs );
1526 This->bDirty = TRUE;
1528 return S_OK;
1531 static HRESULT WINAPI IShellLinkW_fnGetHotkey(IShellLinkW * iface, WORD *pwHotkey)
1533 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1535 TRACE("(%p)->(%p)\n",This, pwHotkey);
1537 *pwHotkey=This->wHotKey;
1539 return S_OK;
1542 static HRESULT WINAPI IShellLinkW_fnSetHotkey(IShellLinkW * iface, WORD wHotkey)
1544 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1546 TRACE("(%p)->(hotkey=%x)\n",This, wHotkey);
1548 This->wHotKey = wHotkey;
1549 This->bDirty = TRUE;
1551 return S_OK;
1554 static HRESULT WINAPI IShellLinkW_fnGetShowCmd(IShellLinkW * iface, INT *piShowCmd)
1556 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1558 TRACE("(%p)->(%p)\n",This, piShowCmd);
1560 *piShowCmd = This->iShowCmd;
1562 return S_OK;
1565 static HRESULT WINAPI IShellLinkW_fnSetShowCmd(IShellLinkW * iface, INT iShowCmd)
1567 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1569 This->iShowCmd = iShowCmd;
1570 This->bDirty = TRUE;
1572 return S_OK;
1575 static HRESULT SHELL_PidlGeticonLocationW(IShellFolder* psf, LPITEMIDLIST pidl, LPWSTR pszIconPath, int cchIconPath, int* piIcon)
1577 LPCITEMIDLIST pidlLast;
1579 HRESULT hr = SHBindToParent(pidl, &IID_IShellFolder, (LPVOID*)&psf, &pidlLast);
1581 if (SUCCEEDED(hr)) {
1582 IExtractIconW* pei;
1584 hr = IShellFolder_GetUIObjectOf(psf, 0, 1, (LPCITEMIDLIST*)&pidlLast, &IID_IExtractIconW, NULL, (LPVOID*)&pei);
1586 if (SUCCEEDED(hr)) {
1587 hr = IExtractIconW_GetIconLocation(pei, 0, pszIconPath, MAX_PATH, piIcon, NULL);
1589 IExtractIconW_Release(pei);
1592 IShellFolder_Release(psf);
1595 return hr;
1598 static HRESULT WINAPI IShellLinkW_fnGetIconLocation(IShellLinkW * iface, LPWSTR pszIconPath,INT cchIconPath,INT *piIcon)
1600 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1602 TRACE("(%p)->(%p len=%u iicon=%p)\n", This, pszIconPath, cchIconPath, piIcon);
1604 if (cchIconPath)
1605 pszIconPath[0] = 0;
1607 if (This->sIcoPath) {
1608 lstrcpynW(pszIconPath, This->sIcoPath, cchIconPath);
1609 *piIcon = This->iIcoNdx;
1610 return S_OK;
1613 if (This->pPidl || This->sPath) {
1614 IShellFolder* pdsk;
1616 HRESULT hr = SHGetDesktopFolder(&pdsk);
1618 if (SUCCEEDED(hr)) {
1619 /* first look for an icon using the PIDL (if present) */
1620 if (This->pPidl)
1621 hr = SHELL_PidlGeticonLocationW(pdsk, This->pPidl, pszIconPath, cchIconPath, piIcon);
1622 else
1623 hr = E_FAIL;
1625 /* if we couldn't find an icon yet, look for it using the file system path */
1626 if (FAILED(hr) && This->sPath) {
1627 LPITEMIDLIST pidl;
1629 hr = IShellFolder_ParseDisplayName(pdsk, 0, NULL, This->sPath, NULL, &pidl, NULL);
1631 if (SUCCEEDED(hr)) {
1632 hr = SHELL_PidlGeticonLocationW(pdsk, pidl, pszIconPath, cchIconPath, piIcon);
1634 SHFree(pidl);
1638 IShellFolder_Release(pdsk);
1641 return hr;
1642 } else
1643 return E_FAIL;
1646 static HRESULT WINAPI IShellLinkW_fnSetIconLocation(IShellLinkW * iface, LPCWSTR pszIconPath,INT iIcon)
1648 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1650 TRACE("(%p)->(path=%s iicon=%u)\n",This, debugstr_w(pszIconPath), iIcon);
1652 if (This->sIcoPath)
1653 HeapFree(GetProcessHeap(), 0, This->sIcoPath);
1654 This->sIcoPath = HeapAlloc( GetProcessHeap(), 0,
1655 (lstrlenW( pszIconPath )+1)*sizeof (WCHAR) );
1656 if ( !This->sIcoPath )
1657 return E_OUTOFMEMORY;
1658 lstrcpyW( This->sIcoPath, pszIconPath );
1660 This->iIcoNdx = iIcon;
1661 This->bDirty = TRUE;
1663 return S_OK;
1666 static HRESULT WINAPI IShellLinkW_fnSetRelativePath(IShellLinkW * iface, LPCWSTR pszPathRel, DWORD dwReserved)
1668 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1670 TRACE("(%p)->(path=%s %lx)\n",This, debugstr_w(pszPathRel), dwReserved);
1672 if (This->sPathRel)
1673 HeapFree(GetProcessHeap(), 0, This->sPathRel);
1674 This->sPathRel = HeapAlloc( GetProcessHeap(), 0,
1675 (lstrlenW( pszPathRel )+1) * sizeof (WCHAR) );
1676 if ( !This->sPathRel )
1677 return E_OUTOFMEMORY;
1678 lstrcpyW( This->sPathRel, pszPathRel );
1679 This->bDirty = TRUE;
1681 return ShellLink_UpdatePath(This->sPathRel, This->sPath, This->sWorkDir, &This->sPath);
1684 static HRESULT WINAPI IShellLinkW_fnResolve(IShellLinkW * iface, HWND hwnd, DWORD fFlags)
1686 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1688 FIXME("(%p)->(hwnd=%p flags=%lx)\n",This, hwnd, fFlags);
1690 return S_OK;
1693 static HRESULT WINAPI IShellLinkW_fnSetPath(IShellLinkW * iface, LPCWSTR pszFile)
1695 _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
1697 TRACE("(%p)->(path=%s)\n",This, debugstr_w(pszFile));
1699 if (This->sPath)
1700 HeapFree(GetProcessHeap(), 0, This->sPath);
1701 This->sPath = HeapAlloc( GetProcessHeap(), 0,
1702 (lstrlenW( pszFile )+1) * sizeof (WCHAR) );
1703 if ( !This->sPath )
1704 return E_OUTOFMEMORY;
1706 lstrcpyW( This->sPath, pszFile );
1707 This->bDirty = TRUE;
1709 return S_OK;
1712 /**************************************************************************
1713 * IShellLinkW Implementation
1716 static IShellLinkWVtbl slvtw =
1718 IShellLinkW_fnQueryInterface,
1719 IShellLinkW_fnAddRef,
1720 IShellLinkW_fnRelease,
1721 IShellLinkW_fnGetPath,
1722 IShellLinkW_fnGetIDList,
1723 IShellLinkW_fnSetIDList,
1724 IShellLinkW_fnGetDescription,
1725 IShellLinkW_fnSetDescription,
1726 IShellLinkW_fnGetWorkingDirectory,
1727 IShellLinkW_fnSetWorkingDirectory,
1728 IShellLinkW_fnGetArguments,
1729 IShellLinkW_fnSetArguments,
1730 IShellLinkW_fnGetHotkey,
1731 IShellLinkW_fnSetHotkey,
1732 IShellLinkW_fnGetShowCmd,
1733 IShellLinkW_fnSetShowCmd,
1734 IShellLinkW_fnGetIconLocation,
1735 IShellLinkW_fnSetIconLocation,
1736 IShellLinkW_fnSetRelativePath,
1737 IShellLinkW_fnResolve,
1738 IShellLinkW_fnSetPath