1998-11-25 16:39:47 +00:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Copyright 1997 Marcus Meissner
|
|
|
|
* Copyright 1998 Juergen Schmied
|
|
|
|
*
|
2002-03-09 23:29:33 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2003-10-09 19:47:08 +00:00
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* Nearly complete informations about the binary formats
|
2004-01-20 01:37:24 +00:00
|
|
|
* of .lnk files available at http://www.wotsit.org
|
2003-10-09 19:47:08 +00:00
|
|
|
*
|
1998-11-25 16:39:47 +00:00
|
|
|
*/
|
|
|
|
|
2000-11-25 03:09:30 +00:00
|
|
|
#include "config.h"
|
2004-04-07 03:59:41 +00:00
|
|
|
#include "wine/port.h"
|
2000-11-25 03:09:30 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
#include <ctype.h>
|
1998-11-25 16:39:47 +00:00
|
|
|
#include <string.h>
|
2003-09-05 23:08:26 +00:00
|
|
|
#include <stdarg.h>
|
2000-11-02 20:22:07 +00:00
|
|
|
#include <stdio.h>
|
2002-08-17 00:43:16 +00:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
2000-11-02 20:22:07 +00:00
|
|
|
#include <errno.h>
|
2003-05-21 18:50:53 +00:00
|
|
|
#include <limits.h>
|
2000-11-25 03:09:30 +00:00
|
|
|
#ifdef HAVE_SYS_WAIT_H
|
|
|
|
# include <sys/wait.h>
|
|
|
|
#endif
|
2002-03-09 23:29:33 +00:00
|
|
|
#include "wine/debug.h"
|
1999-01-23 14:12:48 +00:00
|
|
|
#include "winerror.h"
|
2003-09-05 23:08:26 +00:00
|
|
|
#include "windef.h"
|
2000-09-26 00:00:55 +00:00
|
|
|
#include "winbase.h"
|
|
|
|
#include "winnls.h"
|
2000-12-01 20:48:41 +00:00
|
|
|
#include "winreg.h"
|
1999-01-23 14:12:48 +00:00
|
|
|
|
2003-09-05 23:08:26 +00:00
|
|
|
#include "winuser.h"
|
|
|
|
#include "wingdi.h"
|
2000-09-26 00:00:55 +00:00
|
|
|
#include "shlobj.h"
|
2001-08-16 18:49:56 +00:00
|
|
|
#include "undocshell.h"
|
1998-11-25 16:39:47 +00:00
|
|
|
|
1999-01-23 14:12:48 +00:00
|
|
|
#include "pidl.h"
|
1998-11-25 16:39:47 +00:00
|
|
|
#include "shell32_main.h"
|
1999-01-23 14:12:48 +00:00
|
|
|
#include "shlguid.h"
|
2004-01-20 01:37:24 +00:00
|
|
|
#include "shlwapi.h"
|
1998-11-25 16:39:47 +00:00
|
|
|
|
2002-03-09 23:29:33 +00:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(shell);
|
1999-04-19 14:56:29 +00:00
|
|
|
|
1999-02-24 15:58:26 +00:00
|
|
|
/* link file formats */
|
|
|
|
|
1999-08-15 14:31:36 +00:00
|
|
|
/* flag1: lnk elements: simple link has 0x0B */
|
2003-05-21 18:50:53 +00:00
|
|
|
#define SCF_PIDL 1
|
|
|
|
#define SCF_NORMAL 2
|
|
|
|
#define SCF_DESCRIPTION 4
|
|
|
|
#define SCF_RELATIVE 8
|
|
|
|
#define SCF_WORKDIR 0x10
|
|
|
|
#define SCF_ARGS 0x20
|
|
|
|
#define SCF_CUSTOMICON 0x40
|
2004-01-20 01:37:24 +00:00
|
|
|
#define SCF_UNICODE 0x80
|
1999-07-10 11:48:37 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
#include "pshpack1.h"
|
1999-02-24 15:58:26 +00:00
|
|
|
|
2002-05-31 23:06:46 +00:00
|
|
|
typedef struct _LINK_HEADER
|
2003-05-21 18:50:53 +00:00
|
|
|
{
|
|
|
|
DWORD dwSize; /* 0x00 size of the header - 0x4c */
|
|
|
|
GUID MagicGuid; /* 0x04 is CLSID_ShellLink */
|
|
|
|
DWORD dwFlags; /* 0x14 describes elements following */
|
|
|
|
DWORD dwFileAttr; /* 0x18 attributes of the target file */
|
1999-02-24 15:58:26 +00:00
|
|
|
FILETIME Time1; /* 0x1c */
|
|
|
|
FILETIME Time2; /* 0x24 */
|
|
|
|
FILETIME Time3; /* 0x2c */
|
2003-05-21 18:50:53 +00:00
|
|
|
DWORD dwFileLength; /* 0x34 File length */
|
|
|
|
DWORD nIcon; /* 0x38 icon number */
|
1999-08-15 14:31:36 +00:00
|
|
|
DWORD fStartup; /* 0x3c startup type */
|
1999-07-10 11:48:37 +00:00
|
|
|
DWORD wHotKey; /* 0x40 hotkey */
|
1999-02-24 15:58:26 +00:00
|
|
|
DWORD Unknown5; /* 0x44 */
|
|
|
|
DWORD Unknown6; /* 0x48 */
|
|
|
|
} LINK_HEADER, * PLINK_HEADER;
|
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
#define SHLINK_LOCAL 0
|
|
|
|
#define SHLINK_REMOTE 1
|
2000-11-02 20:22:07 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
typedef struct _LOCATION_INFO
|
2000-11-02 20:22:07 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
DWORD dwTotalSize;
|
|
|
|
DWORD dwHeaderSize;
|
|
|
|
DWORD dwFlags;
|
|
|
|
DWORD dwVolTableOfs;
|
|
|
|
DWORD dwLocalPathOfs;
|
|
|
|
DWORD dwNetworkVolTableOfs;
|
|
|
|
DWORD dwFinalPathOfs;
|
|
|
|
} LOCATION_INFO;
|
2000-11-02 20:22:07 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
typedef struct _LOCAL_VOLUME_INFO
|
2000-11-02 20:22:07 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
DWORD dwSize;
|
|
|
|
DWORD dwType;
|
|
|
|
DWORD dwVolSerial;
|
|
|
|
DWORD dwVolLabelOfs;
|
|
|
|
} LOCAL_VOLUME_INFO;
|
2000-11-02 20:22:07 +00:00
|
|
|
|
1999-04-25 12:36:53 +00:00
|
|
|
#include "poppack.h"
|
1999-02-24 15:58:26 +00:00
|
|
|
|
2004-08-12 23:00:51 +00:00
|
|
|
static IShellLinkAVtbl slvt;
|
|
|
|
static IShellLinkWVtbl slvtw;
|
|
|
|
static IPersistFileVtbl pfvt;
|
|
|
|
static IPersistStreamVtbl psvt;
|
1999-07-10 11:48:37 +00:00
|
|
|
|
|
|
|
/* IShellLink Implementation */
|
|
|
|
|
1999-02-17 15:57:24 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
2004-08-12 19:52:49 +00:00
|
|
|
IShellLinkAVtbl *lpVtbl;
|
|
|
|
DWORD ref;
|
1999-07-10 11:48:37 +00:00
|
|
|
|
2004-08-12 19:52:49 +00:00
|
|
|
IShellLinkWVtbl *lpvtblw;
|
|
|
|
IPersistFileVtbl *lpvtblPersistFile;
|
|
|
|
IPersistStreamVtbl *lpvtblPersistStream;
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2004-01-20 01:37:24 +00:00
|
|
|
/* data structures according to the informations in the link */
|
1999-02-24 15:58:26 +00:00
|
|
|
LPITEMIDLIST pPidl;
|
1999-07-10 11:48:37 +00:00
|
|
|
WORD wHotKey;
|
1999-08-15 14:31:36 +00:00
|
|
|
SYSTEMTIME time1;
|
|
|
|
SYSTEMTIME time2;
|
|
|
|
SYSTEMTIME time3;
|
1999-02-24 15:58:26 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
DWORD iShowCmd;
|
|
|
|
LPWSTR sIcoPath;
|
|
|
|
INT iIcoNdx;
|
|
|
|
LPWSTR sPath;
|
|
|
|
LPWSTR sArgs;
|
|
|
|
LPWSTR sWorkDir;
|
|
|
|
LPWSTR sDescription;
|
|
|
|
LPWSTR sPathRel;
|
2004-03-25 23:36:45 +00:00
|
|
|
|
|
|
|
BOOL bDirty;
|
1999-07-10 11:48:37 +00:00
|
|
|
} IShellLinkImpl;
|
1999-01-17 16:32:32 +00:00
|
|
|
|
1999-07-10 11:48:37 +00:00
|
|
|
#define _IShellLinkW_Offset ((int)(&(((IShellLinkImpl*)0)->lpvtblw)))
|
2003-05-21 18:50:53 +00:00
|
|
|
#define _ICOM_THIS_From_IShellLinkW(class, name) class* This = (class*)(((char*)name)-_IShellLinkW_Offset)
|
1999-01-17 16:32:32 +00:00
|
|
|
|
1999-07-10 11:48:37 +00:00
|
|
|
#define _IPersistFile_Offset ((int)(&(((IShellLinkImpl*)0)->lpvtblPersistFile)))
|
2003-05-21 18:50:53 +00:00
|
|
|
#define _ICOM_THIS_From_IPersistFile(class, name) class* This = (class*)(((char*)name)-_IPersistFile_Offset)
|
1998-12-14 14:51:27 +00:00
|
|
|
|
1999-07-10 11:48:37 +00:00
|
|
|
#define _IPersistStream_Offset ((int)(&(((IShellLinkImpl*)0)->lpvtblPersistStream)))
|
2003-05-21 18:50:53 +00:00
|
|
|
#define _ICOM_THIS_From_IPersistStream(class, name) class* This = (class*)(((char*)name)-_IPersistStream_Offset)
|
|
|
|
#define _IPersistStream_From_ICOM_THIS(class, name) class* StreamThis = (class*)(((char*)name)+_IPersistStream_Offset)
|
1998-12-14 14:51:27 +00:00
|
|
|
|
2004-03-22 21:12:39 +00:00
|
|
|
static HRESULT ShellLink_UpdatePath(LPWSTR sPathRel, LPCWSTR path, LPCWSTR sWorkDir, LPWSTR* psPath);
|
2001-07-24 21:45:22 +00:00
|
|
|
|
|
|
|
/* strdup on the process heap */
|
2003-05-21 18:50:53 +00:00
|
|
|
inline static LPWSTR HEAP_strdupAtoW( HANDLE heap, DWORD flags, LPCSTR str)
|
2001-07-24 21:45:22 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
INT len = MultiByteToWideChar( CP_ACP, 0, str, -1, NULL, 0 );
|
|
|
|
LPWSTR p = HeapAlloc( heap, flags, len*sizeof (WCHAR) );
|
|
|
|
if( !p )
|
|
|
|
return p;
|
|
|
|
MultiByteToWideChar( CP_ACP, 0, str, -1, p, len );
|
2001-07-24 21:45:22 +00:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-12-14 14:51:27 +00:00
|
|
|
/**************************************************************************
|
|
|
|
* IPersistFile_QueryInterface
|
|
|
|
*/
|
1999-01-17 16:32:32 +00:00
|
|
|
static HRESULT WINAPI IPersistFile_fnQueryInterface(
|
1999-07-10 11:48:37 +00:00
|
|
|
IPersistFile* iface,
|
|
|
|
REFIID riid,
|
|
|
|
LPVOID *ppvObj)
|
1999-01-17 16:32:32 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
_ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface);
|
1999-02-24 15:58:26 +00:00
|
|
|
|
1999-07-10 11:48:37 +00:00
|
|
|
TRACE("(%p)\n",This);
|
1998-12-14 14:51:27 +00:00
|
|
|
|
2000-08-03 04:21:23 +00:00
|
|
|
return IShellLinkA_QueryInterface((IShellLinkA*)This, riid, ppvObj);
|
1999-07-10 11:48:37 +00:00
|
|
|
}
|
1998-12-14 14:51:27 +00:00
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* IPersistFile_AddRef
|
|
|
|
*/
|
1999-02-18 13:26:22 +00:00
|
|
|
static ULONG WINAPI IPersistFile_fnAddRef(IPersistFile* iface)
|
1999-01-17 16:32:32 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
_ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface);
|
1999-02-24 15:58:26 +00:00
|
|
|
|
1999-06-12 15:45:58 +00:00
|
|
|
TRACE("(%p)->(count=%lu)\n",This,This->ref);
|
1999-01-23 14:12:48 +00:00
|
|
|
|
2000-08-03 04:21:23 +00:00
|
|
|
return IShellLinkA_AddRef((IShellLinkA*)This);
|
1998-12-14 14:51:27 +00:00
|
|
|
}
|
|
|
|
/******************************************************************************
|
|
|
|
* IPersistFile_Release
|
|
|
|
*/
|
1999-02-18 13:26:22 +00:00
|
|
|
static ULONG WINAPI IPersistFile_fnRelease(IPersistFile* iface)
|
1999-01-17 16:32:32 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
_ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface);
|
1999-02-24 15:58:26 +00:00
|
|
|
|
1999-06-12 15:45:58 +00:00
|
|
|
TRACE("(%p)->(count=%lu)\n",This,This->ref);
|
1999-01-23 14:12:48 +00:00
|
|
|
|
2000-08-03 04:21:23 +00:00
|
|
|
return IShellLinkA_Release((IShellLinkA*)This);
|
1998-12-14 14:51:27 +00:00
|
|
|
}
|
|
|
|
|
1999-07-31 13:13:23 +00:00
|
|
|
static HRESULT WINAPI IPersistFile_fnGetClassID(IPersistFile* iface, CLSID *pClassID)
|
1999-01-17 16:32:32 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
_ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface);
|
1999-06-12 15:45:58 +00:00
|
|
|
FIXME("(%p)\n",This);
|
1998-12-14 14:51:27 +00:00
|
|
|
return NOERROR;
|
|
|
|
}
|
1999-07-31 13:13:23 +00:00
|
|
|
static HRESULT WINAPI IPersistFile_fnIsDirty(IPersistFile* iface)
|
1999-01-17 16:32:32 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
_ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface);
|
2004-03-25 23:36:45 +00:00
|
|
|
|
|
|
|
TRACE("(%p)\n",This);
|
|
|
|
|
|
|
|
if (This->bDirty)
|
|
|
|
return S_OK;
|
|
|
|
|
|
|
|
return S_FALSE;
|
1998-12-14 14:51:27 +00:00
|
|
|
}
|
1999-02-26 11:11:13 +00:00
|
|
|
static HRESULT WINAPI IPersistFile_fnLoad(IPersistFile* iface, LPCOLESTR pszFileName, DWORD dwMode)
|
1999-01-17 16:32:32 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
_ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface);
|
|
|
|
_IPersistStream_From_ICOM_THIS(IPersistStream, This);
|
|
|
|
HRESULT r;
|
|
|
|
IStream *stm;
|
2000-11-02 20:22:07 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p, %s)\n",This, debugstr_w(pszFileName));
|
2000-11-02 20:22:07 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
r = CreateStreamOnFile(pszFileName, dwMode, &stm);
|
|
|
|
if( SUCCEEDED( r ) )
|
2000-11-02 20:22:07 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
r = IPersistStream_Load(StreamThis, stm);
|
2004-03-22 21:12:39 +00:00
|
|
|
ShellLink_UpdatePath(This->sPathRel, pszFileName, This->sWorkDir, &This->sPath);
|
2003-05-21 18:50:53 +00:00
|
|
|
IStream_Release( stm );
|
2004-04-05 20:12:57 +00:00
|
|
|
This->bDirty = FALSE;
|
2000-11-02 20:22:07 +00:00
|
|
|
}
|
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
return r;
|
2000-11-02 20:22:07 +00:00
|
|
|
}
|
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
static BOOL StartLinkProcessor( LPCOLESTR szLink )
|
2002-08-20 00:25:03 +00:00
|
|
|
{
|
2004-04-19 20:12:14 +00:00
|
|
|
static const WCHAR szFormat[] = {'w','i','n','e','m','e','n','u','b','u','i','l','d','e','r','.','e','x','e',
|
2003-05-21 18:50:53 +00:00
|
|
|
' ','-','r',' ','"','%','s','"',0 };
|
|
|
|
LONG len;
|
|
|
|
LPWSTR buffer;
|
|
|
|
STARTUPINFOW si;
|
|
|
|
PROCESS_INFORMATION pi;
|
2002-08-20 00:25:03 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
len = sizeof(szFormat) + lstrlenW( szLink ) * sizeof(WCHAR);
|
|
|
|
buffer = HeapAlloc( GetProcessHeap(), 0, len );
|
|
|
|
if( !buffer )
|
|
|
|
return FALSE;
|
2000-11-02 20:22:07 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
wsprintfW( buffer, szFormat, szLink );
|
2000-11-02 20:22:07 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("starting %s\n",debugstr_w(buffer));
|
2000-11-02 20:22:07 +00:00
|
|
|
|
2003-06-18 19:45:22 +00:00
|
|
|
memset(&si, 0, sizeof(si));
|
|
|
|
si.cb = sizeof(si);
|
2003-05-21 18:50:53 +00:00
|
|
|
if (!CreateProcessW( NULL, buffer, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi)) return FALSE;
|
2000-11-02 20:22:07 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
/* wait for a while to throttle the creation of linker processes */
|
|
|
|
if( WAIT_OBJECT_0 != WaitForSingleObject( pi.hProcess, 10000 ) )
|
|
|
|
WARN("Timed out waiting for shell linker\n");
|
2000-11-02 20:22:07 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
CloseHandle( pi.hProcess );
|
|
|
|
CloseHandle( pi.hThread );
|
2000-11-02 20:22:07 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
1999-02-26 11:11:13 +00:00
|
|
|
static HRESULT WINAPI IPersistFile_fnSave(IPersistFile* iface, LPCOLESTR pszFileName, BOOL fRemember)
|
1999-01-17 16:32:32 +00:00
|
|
|
{
|
2000-11-02 20:22:07 +00:00
|
|
|
_ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface);
|
2003-05-21 18:50:53 +00:00
|
|
|
_IPersistStream_From_ICOM_THIS(IPersistStream, This);
|
|
|
|
HRESULT r;
|
|
|
|
IStream *stm;
|
2000-11-02 20:22:07 +00:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n",This,debugstr_w(pszFileName));
|
|
|
|
|
|
|
|
if (!pszFileName || !This->sPath)
|
2004-04-12 23:12:39 +00:00
|
|
|
return E_FAIL;
|
2000-11-02 20:22:07 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
r = CreateStreamOnFile(pszFileName, STGM_READWRITE | STGM_CREATE, &stm);
|
|
|
|
if( SUCCEEDED( r ) )
|
2000-12-01 20:48:41 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
r = IPersistStream_Save(StreamThis, stm, FALSE);
|
|
|
|
IStream_Release( stm );
|
2000-11-02 20:22:07 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
if( SUCCEEDED( r ) )
|
2004-03-25 23:36:45 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
StartLinkProcessor( pszFileName );
|
2004-03-25 23:36:45 +00:00
|
|
|
|
2004-04-05 20:12:57 +00:00
|
|
|
This->bDirty = FALSE;
|
2004-03-25 23:36:45 +00:00
|
|
|
}
|
|
|
|
else
|
2000-11-02 20:22:07 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
DeleteFileW( pszFileName );
|
|
|
|
WARN("Failed to create shortcut %s\n", debugstr_w(pszFileName) );
|
2000-11-02 20:22:07 +00:00
|
|
|
}
|
|
|
|
}
|
2002-10-31 23:35:20 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
return r;
|
1999-01-17 16:32:32 +00:00
|
|
|
}
|
2000-11-02 20:22:07 +00:00
|
|
|
|
1999-02-26 11:11:13 +00:00
|
|
|
static HRESULT WINAPI IPersistFile_fnSaveCompleted(IPersistFile* iface, LPCOLESTR pszFileName)
|
1999-01-17 16:32:32 +00:00
|
|
|
{
|
1999-07-10 11:48:37 +00:00
|
|
|
_ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface);
|
1999-06-12 15:45:58 +00:00
|
|
|
FIXME("(%p)->(%s)\n",This,debugstr_w(pszFileName));
|
1999-07-10 11:48:37 +00:00
|
|
|
return NOERROR;
|
1999-01-17 16:32:32 +00:00
|
|
|
}
|
1999-07-31 13:13:23 +00:00
|
|
|
static HRESULT WINAPI IPersistFile_fnGetCurFile(IPersistFile* iface, LPOLESTR *ppszFileName)
|
1999-01-17 16:32:32 +00:00
|
|
|
{
|
1999-07-10 11:48:37 +00:00
|
|
|
_ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface);
|
1999-06-12 15:45:58 +00:00
|
|
|
FIXME("(%p)\n",This);
|
1998-12-14 14:51:27 +00:00
|
|
|
return NOERROR;
|
|
|
|
}
|
1999-07-10 11:48:37 +00:00
|
|
|
|
2004-08-12 23:00:51 +00:00
|
|
|
static IPersistFileVtbl pfvt =
|
1999-01-17 16:32:32 +00:00
|
|
|
{
|
1999-05-22 11:41:38 +00:00
|
|
|
ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
|
1999-02-24 15:58:26 +00:00
|
|
|
IPersistFile_fnQueryInterface,
|
|
|
|
IPersistFile_fnAddRef,
|
|
|
|
IPersistFile_fnRelease,
|
|
|
|
IPersistFile_fnGetClassID,
|
|
|
|
IPersistFile_fnIsDirty,
|
|
|
|
IPersistFile_fnLoad,
|
|
|
|
IPersistFile_fnSave,
|
|
|
|
IPersistFile_fnSaveCompleted,
|
|
|
|
IPersistFile_fnGetCurFile
|
1999-01-17 16:32:32 +00:00
|
|
|
};
|
1998-12-14 14:51:27 +00:00
|
|
|
|
1999-07-10 11:48:37 +00:00
|
|
|
/************************************************************************
|
|
|
|
* IPersistStream_QueryInterface
|
1998-12-14 14:51:27 +00:00
|
|
|
*/
|
1999-07-10 11:48:37 +00:00
|
|
|
static HRESULT WINAPI IPersistStream_fnQueryInterface(
|
|
|
|
IPersistStream* iface,
|
|
|
|
REFIID riid,
|
|
|
|
VOID** ppvoid)
|
1999-02-17 15:57:24 +00:00
|
|
|
{
|
1999-07-10 11:48:37 +00:00
|
|
|
_ICOM_THIS_From_IPersistStream(IShellLinkImpl, iface);
|
1999-01-17 16:32:32 +00:00
|
|
|
|
1999-07-10 11:48:37 +00:00
|
|
|
TRACE("(%p)\n",This);
|
1998-12-14 14:51:27 +00:00
|
|
|
|
2000-08-03 04:21:23 +00:00
|
|
|
return IShellLinkA_QueryInterface((IShellLinkA*)This, riid, ppvoid);
|
1999-07-10 11:48:37 +00:00
|
|
|
}
|
1998-12-14 14:51:27 +00:00
|
|
|
|
1999-07-10 11:48:37 +00:00
|
|
|
/************************************************************************
|
|
|
|
* IPersistStream_Release
|
|
|
|
*/
|
|
|
|
static ULONG WINAPI IPersistStream_fnRelease(
|
|
|
|
IPersistStream* iface)
|
1999-01-17 16:32:32 +00:00
|
|
|
{
|
1999-07-10 11:48:37 +00:00
|
|
|
_ICOM_THIS_From_IPersistStream(IShellLinkImpl, iface);
|
1998-12-14 14:51:27 +00:00
|
|
|
|
1999-07-10 11:48:37 +00:00
|
|
|
TRACE("(%p)\n",This);
|
|
|
|
|
2000-08-03 04:21:23 +00:00
|
|
|
return IShellLinkA_Release((IShellLinkA*)This);
|
1998-12-14 14:51:27 +00:00
|
|
|
}
|
1999-07-10 11:48:37 +00:00
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* IPersistStream_AddRef
|
1998-12-14 14:51:27 +00:00
|
|
|
*/
|
1999-07-10 11:48:37 +00:00
|
|
|
static ULONG WINAPI IPersistStream_fnAddRef(
|
|
|
|
IPersistStream* iface)
|
1999-01-17 16:32:32 +00:00
|
|
|
{
|
1999-07-10 11:48:37 +00:00
|
|
|
_ICOM_THIS_From_IPersistStream(IShellLinkImpl, iface);
|
1998-12-14 14:51:27 +00:00
|
|
|
|
1999-07-10 11:48:37 +00:00
|
|
|
TRACE("(%p)\n",This);
|
1998-12-14 14:51:27 +00:00
|
|
|
|
2000-08-03 04:21:23 +00:00
|
|
|
return IShellLinkA_AddRef((IShellLinkA*)This);
|
2002-05-31 23:06:46 +00:00
|
|
|
}
|
1998-12-14 14:51:27 +00:00
|
|
|
|
1999-07-10 11:48:37 +00:00
|
|
|
/************************************************************************
|
|
|
|
* IPersistStream_GetClassID
|
|
|
|
*
|
1998-12-14 14:51:27 +00:00
|
|
|
*/
|
1999-07-10 11:48:37 +00:00
|
|
|
static HRESULT WINAPI IPersistStream_fnGetClassID(
|
1999-07-31 13:13:23 +00:00
|
|
|
IPersistStream* iface,
|
1999-07-10 11:48:37 +00:00
|
|
|
CLSID* pClassID)
|
1999-01-17 16:32:32 +00:00
|
|
|
{
|
1999-07-10 11:48:37 +00:00
|
|
|
_ICOM_THIS_From_IPersistStream(IShellLinkImpl, iface);
|
1999-01-23 14:12:48 +00:00
|
|
|
|
1999-07-10 11:48:37 +00:00
|
|
|
TRACE("(%p)\n", This);
|
|
|
|
|
|
|
|
if (pClassID==0)
|
|
|
|
return E_POINTER;
|
|
|
|
|
|
|
|
/* memcpy(pClassID, &CLSID_???, sizeof(CLSID_???)); */
|
|
|
|
|
|
|
|
return S_OK;
|
1998-12-14 14:51:27 +00:00
|
|
|
}
|
1999-07-10 11:48:37 +00:00
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* IPersistStream_IsDirty (IPersistStream)
|
1998-12-14 14:51:27 +00:00
|
|
|
*/
|
1999-07-10 11:48:37 +00:00
|
|
|
static HRESULT WINAPI IPersistStream_fnIsDirty(
|
|
|
|
IPersistStream* iface)
|
1999-01-17 16:32:32 +00:00
|
|
|
{
|
1999-07-10 11:48:37 +00:00
|
|
|
_ICOM_THIS_From_IPersistStream(IShellLinkImpl, iface);
|
1999-01-23 14:12:48 +00:00
|
|
|
|
1999-07-10 11:48:37 +00:00
|
|
|
TRACE("(%p)\n", This);
|
|
|
|
|
|
|
|
return S_OK;
|
1998-12-14 14:51:27 +00:00
|
|
|
}
|
2003-05-21 18:50:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
static HRESULT Stream_LoadString( IStream* stm, BOOL unicode, LPWSTR *pstr )
|
|
|
|
{
|
|
|
|
DWORD count;
|
|
|
|
USHORT len;
|
|
|
|
LPVOID temp;
|
|
|
|
LPWSTR str;
|
|
|
|
HRESULT r;
|
|
|
|
|
|
|
|
TRACE("%p\n", stm);
|
|
|
|
|
|
|
|
count = 0;
|
2003-06-18 19:45:22 +00:00
|
|
|
r = IStream_Read(stm, &len, sizeof(len), &count);
|
|
|
|
if ( FAILED (r) || ( count != sizeof(len) ) )
|
2003-05-21 18:50:53 +00:00
|
|
|
return E_FAIL;
|
|
|
|
|
|
|
|
if( unicode )
|
|
|
|
len *= sizeof (WCHAR);
|
|
|
|
|
|
|
|
TRACE("reading %d\n", len);
|
|
|
|
temp = HeapAlloc(GetProcessHeap(), 0, len+sizeof(WCHAR));
|
|
|
|
if( !temp )
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
count = 0;
|
|
|
|
r = IStream_Read(stm, temp, len, &count);
|
|
|
|
if( FAILED (r) || ( count != len ) )
|
|
|
|
{
|
|
|
|
HeapFree( GetProcessHeap(), 0, temp );
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("read %s\n", debugstr_an(temp,len));
|
|
|
|
|
|
|
|
/* convert to unicode if necessary */
|
|
|
|
if( !unicode )
|
|
|
|
{
|
|
|
|
count = MultiByteToWideChar( CP_ACP, 0, (LPSTR) temp, len, NULL, 0 );
|
|
|
|
str = HeapAlloc( GetProcessHeap(), 0, (count+1)*sizeof (WCHAR) );
|
|
|
|
if( str )
|
|
|
|
MultiByteToWideChar( CP_ACP, 0, (LPSTR) temp, len, str, count );
|
|
|
|
HeapFree( GetProcessHeap(), 0, temp );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
count /= 2;
|
|
|
|
str = (LPWSTR) temp;
|
|
|
|
}
|
|
|
|
str[count] = 0;
|
|
|
|
|
|
|
|
*pstr = str;
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT Stream_LoadLocation( IStream* stm )
|
|
|
|
{
|
|
|
|
DWORD size;
|
|
|
|
ULONG count;
|
|
|
|
HRESULT r;
|
|
|
|
LOCATION_INFO *loc;
|
|
|
|
|
|
|
|
TRACE("%p\n",stm);
|
|
|
|
|
2003-06-18 19:45:22 +00:00
|
|
|
r = IStream_Read( stm, &size, sizeof(size), &count );
|
2003-05-21 18:50:53 +00:00
|
|
|
if( FAILED( r ) )
|
|
|
|
return r;
|
2003-06-18 19:45:22 +00:00
|
|
|
if( count != sizeof(loc->dwTotalSize) )
|
2003-05-21 18:50:53 +00:00
|
|
|
return E_FAIL;
|
|
|
|
|
|
|
|
loc = HeapAlloc( GetProcessHeap(), 0, size );
|
|
|
|
if( ! loc )
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
2003-06-18 19:45:22 +00:00
|
|
|
r = IStream_Read( stm, &loc->dwHeaderSize, size-sizeof(size), &count );
|
2003-05-21 18:50:53 +00:00
|
|
|
if( FAILED( r ) )
|
|
|
|
goto end;
|
2003-06-18 19:45:22 +00:00
|
|
|
if( count != (size - sizeof(size)) )
|
2003-05-21 18:50:53 +00:00
|
|
|
{
|
|
|
|
r = E_FAIL;
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
loc->dwTotalSize = size;
|
|
|
|
|
|
|
|
TRACE("Read %ld bytes\n",count);
|
|
|
|
|
|
|
|
/* FIXME: do something useful with it */
|
|
|
|
HeapFree( GetProcessHeap(), 0, loc );
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
end:
|
|
|
|
HeapFree( GetProcessHeap(), 0, loc );
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
1999-07-10 11:48:37 +00:00
|
|
|
/************************************************************************
|
|
|
|
* IPersistStream_Load (IPersistStream)
|
1998-12-14 14:51:27 +00:00
|
|
|
*/
|
1999-07-10 11:48:37 +00:00
|
|
|
static HRESULT WINAPI IPersistStream_fnLoad(
|
|
|
|
IPersistStream* iface,
|
2003-05-21 18:50:53 +00:00
|
|
|
IStream* stm)
|
1999-07-10 11:48:37 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
LINK_HEADER hdr;
|
|
|
|
ULONG dwBytesRead;
|
|
|
|
BOOL unicode;
|
|
|
|
WCHAR sTemp[MAX_PATH];
|
|
|
|
HRESULT r;
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
_ICOM_THIS_From_IPersistStream(IShellLinkImpl, iface);
|
1998-12-14 14:51:27 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)(%p)\n", This, stm);
|
1998-12-14 14:51:27 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
if( !stm )
|
1999-07-10 11:48:37 +00:00
|
|
|
return STG_E_INVALIDPOINTER;
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
dwBytesRead = 0;
|
2003-06-18 19:45:22 +00:00
|
|
|
r = IStream_Read(stm, &hdr, sizeof(hdr), &dwBytesRead);
|
2003-05-21 18:50:53 +00:00
|
|
|
if( FAILED( r ) )
|
|
|
|
return r;
|
2002-08-16 23:27:07 +00:00
|
|
|
|
2003-06-18 19:45:22 +00:00
|
|
|
if( dwBytesRead != sizeof(hdr))
|
2003-05-21 18:50:53 +00:00
|
|
|
return E_FAIL;
|
2003-06-18 19:45:22 +00:00
|
|
|
if( hdr.dwSize != sizeof(hdr))
|
2003-05-21 18:50:53 +00:00
|
|
|
return E_FAIL;
|
|
|
|
if( !IsEqualIID(&hdr.MagicGuid, &CLSID_ShellLink) )
|
|
|
|
return E_FAIL;
|
2002-08-16 23:27:07 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
/* if( hdr.dwFlags & SCF_PIDL ) */ /* FIXME: seems to always have a PIDL */
|
|
|
|
{
|
|
|
|
r = ILLoadFromStream( stm, &This->pPidl );
|
|
|
|
if( FAILED( r ) )
|
|
|
|
return r;
|
|
|
|
}
|
2004-04-12 23:12:39 +00:00
|
|
|
This->wHotKey = (WORD)hdr.wHotKey;
|
2003-05-21 18:50:53 +00:00
|
|
|
This->iIcoNdx = hdr.nIcon;
|
|
|
|
FileTimeToSystemTime (&hdr.Time1, &This->time1);
|
|
|
|
FileTimeToSystemTime (&hdr.Time2, &This->time2);
|
|
|
|
FileTimeToSystemTime (&hdr.Time3, &This->time3);
|
|
|
|
#if 1
|
|
|
|
GetDateFormatW(LOCALE_USER_DEFAULT,DATE_SHORTDATE,&This->time1, NULL, sTemp, 256);
|
|
|
|
TRACE("-- time1: %s\n", debugstr_w(sTemp) );
|
|
|
|
GetDateFormatW(LOCALE_USER_DEFAULT,DATE_SHORTDATE,&This->time2, NULL, sTemp, 256);
|
|
|
|
TRACE("-- time1: %s\n", debugstr_w(sTemp) );
|
|
|
|
GetDateFormatW(LOCALE_USER_DEFAULT,DATE_SHORTDATE,&This->time3, NULL, sTemp, 256);
|
|
|
|
TRACE("-- time1: %s\n", debugstr_w(sTemp) );
|
|
|
|
pdump (This->pPidl);
|
|
|
|
#endif
|
|
|
|
if( hdr.dwFlags & SCF_NORMAL )
|
|
|
|
r = Stream_LoadLocation( stm );
|
|
|
|
if( FAILED( r ) )
|
|
|
|
goto end;
|
|
|
|
unicode = hdr.dwFlags & SCF_UNICODE;
|
|
|
|
if( hdr.dwFlags & SCF_DESCRIPTION )
|
|
|
|
{
|
|
|
|
r = Stream_LoadString( stm, unicode, &This->sDescription );
|
|
|
|
TRACE("Description -> %s\n",debugstr_w(This->sDescription));
|
|
|
|
}
|
|
|
|
if( FAILED( r ) )
|
|
|
|
goto end;
|
2002-08-16 23:27:07 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
if( hdr.dwFlags & SCF_RELATIVE )
|
|
|
|
{
|
|
|
|
r = Stream_LoadString( stm, unicode, &This->sPathRel );
|
|
|
|
TRACE("Relative Path-> %s\n",debugstr_w(This->sPathRel));
|
|
|
|
}
|
|
|
|
if( FAILED( r ) )
|
|
|
|
goto end;
|
2002-08-16 23:27:07 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
if( hdr.dwFlags & SCF_WORKDIR )
|
2002-08-16 23:27:07 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
r = Stream_LoadString( stm, unicode, &This->sWorkDir );
|
|
|
|
TRACE("Working Dir -> %s\n",debugstr_w(This->sWorkDir));
|
|
|
|
}
|
|
|
|
if( FAILED( r ) )
|
|
|
|
goto end;
|
2002-08-16 23:27:07 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
if( hdr.dwFlags & SCF_ARGS )
|
|
|
|
{
|
|
|
|
r = Stream_LoadString( stm, unicode, &This->sArgs );
|
|
|
|
TRACE("Working Dir -> %s\n",debugstr_w(This->sArgs));
|
|
|
|
}
|
|
|
|
if( FAILED( r ) )
|
|
|
|
goto end;
|
|
|
|
|
|
|
|
if( hdr.dwFlags & SCF_CUSTOMICON )
|
|
|
|
{
|
|
|
|
r = Stream_LoadString( stm, unicode, &This->sIcoPath );
|
|
|
|
TRACE("Icon file -> %s\n",debugstr_w(This->sIcoPath));
|
|
|
|
}
|
|
|
|
if( FAILED( r ) )
|
|
|
|
goto end;
|
|
|
|
|
|
|
|
TRACE("OK\n");
|
|
|
|
|
|
|
|
pdump (This->pPidl);
|
1998-12-14 14:51:27 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
return S_OK;
|
2002-08-16 23:27:07 +00:00
|
|
|
end:
|
2003-05-21 18:50:53 +00:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* Stream_WriteString
|
|
|
|
*
|
|
|
|
* Helper function for IPersistStream_Save. Writes a unicode string
|
|
|
|
* with terminating nul byte to a stream, preceded by the its length.
|
|
|
|
*/
|
|
|
|
static HRESULT Stream_WriteString( IStream* stm, LPCWSTR str )
|
|
|
|
{
|
|
|
|
USHORT len = lstrlenW( str ) + 1;
|
|
|
|
DWORD count;
|
|
|
|
HRESULT r;
|
|
|
|
|
2003-06-18 19:45:22 +00:00
|
|
|
r = IStream_Write( stm, &len, sizeof(len), &count );
|
2003-05-21 18:50:53 +00:00
|
|
|
if( FAILED( r ) )
|
|
|
|
return r;
|
|
|
|
|
|
|
|
len *= sizeof(WCHAR);
|
|
|
|
|
|
|
|
r = IStream_Write( stm, str, len, &count );
|
|
|
|
if( FAILED( r ) )
|
|
|
|
return r;
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
1999-07-10 11:48:37 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
static HRESULT Stream_WriteLocationInfo( IStream* stm, LPCWSTR filename )
|
|
|
|
{
|
|
|
|
LOCATION_INFO loc;
|
|
|
|
ULONG count;
|
|
|
|
|
|
|
|
FIXME("writing empty location info\n");
|
|
|
|
|
2003-06-18 19:45:22 +00:00
|
|
|
memset( &loc, 0, sizeof(loc) );
|
|
|
|
loc.dwTotalSize = sizeof(loc) - sizeof(loc.dwTotalSize);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
/* FIXME: fill this in */
|
1999-07-10 11:48:37 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
return IStream_Write( stm, &loc, loc.dwTotalSize, &count );
|
1998-12-14 14:51:27 +00:00
|
|
|
}
|
1999-07-10 11:48:37 +00:00
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* IPersistStream_Save (IPersistStream)
|
2003-05-21 18:50:53 +00:00
|
|
|
*
|
|
|
|
* FIXME: makes assumptions about byte order
|
1998-12-14 14:51:27 +00:00
|
|
|
*/
|
1999-07-10 11:48:37 +00:00
|
|
|
static HRESULT WINAPI IPersistStream_fnSave(
|
|
|
|
IPersistStream* iface,
|
2003-05-21 18:50:53 +00:00
|
|
|
IStream* stm,
|
1999-07-10 11:48:37 +00:00
|
|
|
BOOL fClearDirty)
|
1999-01-17 16:32:32 +00:00
|
|
|
{
|
2004-03-26 02:29:12 +00:00
|
|
|
static const WCHAR wOpen[] = {'o','p','e','n',0};
|
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
LINK_HEADER header;
|
2004-03-26 02:29:12 +00:00
|
|
|
WCHAR exePath[MAX_PATH];
|
|
|
|
ULONG count;
|
|
|
|
HRESULT r;
|
2003-05-21 18:50:53 +00:00
|
|
|
|
2004-03-26 02:29:12 +00:00
|
|
|
_ICOM_THIS_From_IPersistStream(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p) %p %x\n", This, stm, fClearDirty);
|
1999-07-10 11:48:37 +00:00
|
|
|
|
2004-03-26 02:29:12 +00:00
|
|
|
*exePath = '\0';
|
|
|
|
|
|
|
|
if (This->sPath)
|
|
|
|
SHELL_FindExecutable(NULL, This->sPath, wOpen, exePath, MAX_PATH, NULL, NULL, NULL, NULL);
|
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
/* if there's no PIDL, generate one */
|
|
|
|
if( ! This->pPidl )
|
|
|
|
{
|
2004-03-26 02:29:12 +00:00
|
|
|
if( !*exePath )
|
2003-05-21 18:50:53 +00:00
|
|
|
return E_FAIL;
|
2004-03-26 02:29:12 +00:00
|
|
|
|
|
|
|
This->pPidl = ILCreateFromPathW(exePath);
|
2003-05-21 18:50:53 +00:00
|
|
|
}
|
|
|
|
|
2003-06-18 19:45:22 +00:00
|
|
|
memset(&header, 0, sizeof(header));
|
|
|
|
header.dwSize = sizeof(header);
|
|
|
|
memcpy(&header.MagicGuid, &CLSID_ShellLink, sizeof(header.MagicGuid) );
|
2003-05-21 18:50:53 +00:00
|
|
|
|
|
|
|
header.wHotKey = This->wHotKey;
|
|
|
|
header.nIcon = This->iIcoNdx;
|
|
|
|
header.dwFlags = SCF_UNICODE; /* strings are in unicode */
|
|
|
|
header.dwFlags |= SCF_NORMAL; /* how do we determine this ? */
|
|
|
|
if( This->pPidl )
|
|
|
|
header.dwFlags |= SCF_PIDL;
|
|
|
|
if( This->sDescription )
|
|
|
|
header.dwFlags |= SCF_DESCRIPTION;
|
|
|
|
if( This->sWorkDir )
|
|
|
|
header.dwFlags |= SCF_WORKDIR;
|
|
|
|
if( This->sArgs )
|
|
|
|
header.dwFlags |= SCF_ARGS;
|
|
|
|
if( This->sIcoPath )
|
|
|
|
header.dwFlags |= SCF_CUSTOMICON;
|
|
|
|
|
|
|
|
SystemTimeToFileTime ( &This->time1, &header.Time1 );
|
|
|
|
SystemTimeToFileTime ( &This->time2, &header.Time2 );
|
|
|
|
SystemTimeToFileTime ( &This->time3, &header.Time3 );
|
|
|
|
|
|
|
|
/* write the Shortcut header */
|
2003-06-18 19:45:22 +00:00
|
|
|
r = IStream_Write( stm, &header, sizeof(header), &count );
|
2003-05-21 18:50:53 +00:00
|
|
|
if( FAILED( r ) )
|
|
|
|
{
|
|
|
|
ERR("Write failed at %d\n",__LINE__);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("Writing pidl \n");
|
|
|
|
|
|
|
|
/* write the PIDL to the shortcut */
|
|
|
|
if( This->pPidl )
|
|
|
|
{
|
|
|
|
r = ILSaveToStream( stm, This->pPidl );
|
|
|
|
if( FAILED( r ) )
|
|
|
|
{
|
|
|
|
ERR("Failed to write PIDL at %d\n",__LINE__);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-03-26 02:29:12 +00:00
|
|
|
Stream_WriteLocationInfo( stm, exePath );
|
2003-05-21 18:50:53 +00:00
|
|
|
|
|
|
|
TRACE("Description = %s\n", debugstr_w(This->sDescription));
|
|
|
|
if( This->sDescription )
|
|
|
|
r = Stream_WriteString( stm, This->sDescription );
|
|
|
|
|
|
|
|
if( This->sPathRel )
|
|
|
|
r = Stream_WriteString( stm, This->sPathRel );
|
|
|
|
|
|
|
|
if( This->sWorkDir )
|
|
|
|
r = Stream_WriteString( stm, This->sWorkDir );
|
|
|
|
|
|
|
|
if( This->sArgs )
|
|
|
|
r = Stream_WriteString( stm, This->sArgs );
|
|
|
|
|
|
|
|
if( This->sIcoPath )
|
|
|
|
r = Stream_WriteString( stm, This->sIcoPath );
|
|
|
|
|
|
|
|
return S_OK;
|
1998-12-14 14:51:27 +00:00
|
|
|
}
|
|
|
|
|
1999-07-10 11:48:37 +00:00
|
|
|
/************************************************************************
|
|
|
|
* IPersistStream_GetSizeMax (IPersistStream)
|
1999-02-24 15:58:26 +00:00
|
|
|
*/
|
1999-07-10 11:48:37 +00:00
|
|
|
static HRESULT WINAPI IPersistStream_fnGetSizeMax(
|
|
|
|
IPersistStream* iface,
|
|
|
|
ULARGE_INTEGER* pcbSize)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
1999-07-10 11:48:37 +00:00
|
|
|
_ICOM_THIS_From_IPersistStream(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
1999-07-10 11:48:37 +00:00
|
|
|
TRACE("(%p)\n", This);
|
1998-11-25 16:39:47 +00:00
|
|
|
|
1999-07-10 11:48:37 +00:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
1999-01-17 16:32:32 +00:00
|
|
|
|
2004-08-12 23:00:51 +00:00
|
|
|
static IPersistStreamVtbl psvt =
|
1999-07-10 11:48:37 +00:00
|
|
|
{
|
|
|
|
ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
|
|
|
|
IPersistStream_fnQueryInterface,
|
|
|
|
IPersistStream_fnAddRef,
|
|
|
|
IPersistStream_fnRelease,
|
|
|
|
IPersistStream_fnGetClassID,
|
|
|
|
IPersistStream_fnIsDirty,
|
|
|
|
IPersistStream_fnLoad,
|
|
|
|
IPersistStream_fnSave,
|
|
|
|
IPersistStream_fnGetSizeMax
|
|
|
|
};
|
1998-11-25 16:39:47 +00:00
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* IShellLink_Constructor
|
|
|
|
*/
|
2002-07-02 02:05:17 +00:00
|
|
|
HRESULT WINAPI IShellLink_Constructor (
|
|
|
|
IUnknown * pUnkOuter,
|
|
|
|
REFIID riid,
|
|
|
|
LPVOID * ppv)
|
|
|
|
{
|
|
|
|
IShellLinkImpl * sl;
|
|
|
|
|
|
|
|
TRACE("unkOut=%p riid=%s\n",pUnkOuter, debugstr_guid(riid));
|
|
|
|
|
|
|
|
*ppv = NULL;
|
|
|
|
|
|
|
|
if(pUnkOuter) return CLASS_E_NOAGGREGATION;
|
|
|
|
sl = (IShellLinkImpl *) LocalAlloc(GMEM_ZEROINIT,sizeof(IShellLinkImpl));
|
|
|
|
if (!sl) return E_OUTOFMEMORY;
|
1998-11-25 16:39:47 +00:00
|
|
|
|
|
|
|
sl->ref = 1;
|
2003-04-10 18:17:34 +00:00
|
|
|
sl->lpVtbl = &slvt;
|
1999-07-10 11:48:37 +00:00
|
|
|
sl->lpvtblw = &slvtw;
|
|
|
|
sl->lpvtblPersistFile = &pfvt;
|
|
|
|
sl->lpvtblPersistStream = &psvt;
|
2003-05-21 18:50:53 +00:00
|
|
|
sl->iShowCmd = SW_SHOWNORMAL;
|
2004-03-25 23:36:45 +00:00
|
|
|
sl->bDirty = FALSE;
|
2002-05-31 23:06:46 +00:00
|
|
|
|
1999-06-12 15:45:58 +00:00
|
|
|
TRACE("(%p)->()\n",sl);
|
2002-07-02 02:05:17 +00:00
|
|
|
|
2002-08-20 00:25:03 +00:00
|
|
|
if (IsEqualIID(riid, &IID_IUnknown) ||
|
|
|
|
IsEqualIID(riid, &IID_IShellLinkA))
|
2002-07-02 02:05:17 +00:00
|
|
|
*ppv = sl;
|
|
|
|
else if (IsEqualIID(riid, &IID_IShellLinkW))
|
|
|
|
*ppv = &(sl->lpvtblw);
|
|
|
|
else {
|
|
|
|
LocalFree((HLOCAL)sl);
|
|
|
|
ERR("E_NOINTERFACE\n");
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
|
|
|
|
2004-01-20 01:37:24 +00:00
|
|
|
|
|
|
|
static BOOL SHELL_ExistsFileW(LPCWSTR path)
|
|
|
|
{
|
|
|
|
HANDLE hfile = CreateFileW(path, GENERIC_READ, FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL);
|
|
|
|
|
|
|
|
if (hfile != INVALID_HANDLE_VALUE) {
|
|
|
|
CloseHandle(hfile);
|
|
|
|
return TRUE;
|
|
|
|
} else
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
2004-03-22 21:12:39 +00:00
|
|
|
* ShellLink_UpdatePath
|
2004-01-20 01:37:24 +00:00
|
|
|
* update absolute path in sPath using relative path in sPathRel
|
|
|
|
*/
|
2004-03-22 21:12:39 +00:00
|
|
|
static HRESULT ShellLink_UpdatePath(LPWSTR sPathRel, LPCWSTR path, LPCWSTR sWorkDir, LPWSTR* psPath)
|
2004-01-20 01:37:24 +00:00
|
|
|
{
|
|
|
|
if (!path || !psPath)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
if (!*psPath && sPathRel) {
|
|
|
|
WCHAR buffer[2*MAX_PATH], abs_path[2*MAX_PATH];
|
2004-03-22 21:12:39 +00:00
|
|
|
LPWSTR final = NULL;
|
2004-01-20 01:37:24 +00:00
|
|
|
|
|
|
|
/* first try if [directory of link file] + [relative path] finds an existing file */
|
|
|
|
|
2004-03-22 21:12:39 +00:00
|
|
|
GetFullPathNameW( path, MAX_PATH*2, buffer, &final );
|
|
|
|
if( !final )
|
|
|
|
final = buffer;
|
|
|
|
lstrcpyW(final, sPathRel);
|
2004-01-20 01:37:24 +00:00
|
|
|
|
|
|
|
*abs_path = '\0';
|
|
|
|
|
|
|
|
if (SHELL_ExistsFileW(buffer)) {
|
|
|
|
if (!GetFullPathNameW(buffer, MAX_PATH, abs_path, &final))
|
|
|
|
lstrcpyW(abs_path, buffer);
|
|
|
|
} else {
|
|
|
|
/* try if [working directory] + [relative path] finds an existing file */
|
|
|
|
if (sWorkDir) {
|
|
|
|
lstrcpyW(buffer, sWorkDir);
|
|
|
|
lstrcpyW(PathAddBackslashW(buffer), sPathRel);
|
|
|
|
|
|
|
|
if (SHELL_ExistsFileW(buffer))
|
|
|
|
if (!GetFullPathNameW(buffer, MAX_PATH, abs_path, &final))
|
|
|
|
lstrcpyW(abs_path, buffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FIXME: This is even not enough - not all shell links can be resolved using this algorithm. */
|
|
|
|
if (!*abs_path)
|
|
|
|
lstrcpyW(abs_path, sPathRel);
|
|
|
|
|
|
|
|
*psPath = HeapAlloc(GetProcessHeap(), 0, (lstrlenW(abs_path)+1)*sizeof(WCHAR));
|
|
|
|
if (!*psPath)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
lstrcpyW(*psPath, abs_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* IShellLink_ConstructFromFile
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI IShellLink_ConstructFromFile (
|
|
|
|
IUnknown* pUnkOuter,
|
|
|
|
REFIID riid,
|
|
|
|
LPCITEMIDLIST pidl,
|
|
|
|
LPVOID* ppv
|
|
|
|
)
|
|
|
|
{
|
|
|
|
IShellLinkW* psl;
|
|
|
|
|
|
|
|
HRESULT hr = IShellLink_Constructor(NULL, riid, (LPVOID*)&psl);
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr)) {
|
|
|
|
IPersistFile* ppf;
|
|
|
|
|
|
|
|
*ppv = NULL;
|
|
|
|
|
|
|
|
hr = IShellLinkW_QueryInterface(psl, &IID_IPersistFile, (LPVOID*)&ppf);
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr)) {
|
|
|
|
WCHAR path[MAX_PATH];
|
|
|
|
|
2004-03-22 21:12:39 +00:00
|
|
|
if (SHGetPathFromIDListW(pidl, path))
|
2004-01-20 01:37:24 +00:00
|
|
|
hr = IPersistFile_Load(ppf, path, 0);
|
2004-03-22 21:12:39 +00:00
|
|
|
else
|
|
|
|
hr = E_FAIL;
|
2004-01-20 01:37:24 +00:00
|
|
|
|
2004-03-22 22:58:37 +00:00
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
*ppv = (IUnknown*) psl;
|
|
|
|
|
2004-01-20 01:37:24 +00:00
|
|
|
IPersistFile_Release(ppf);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!*ppv)
|
|
|
|
IShellLinkW_Release(psl);
|
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
1998-11-25 16:39:47 +00:00
|
|
|
/**************************************************************************
|
2000-08-03 04:21:23 +00:00
|
|
|
* IShellLinkA_QueryInterface
|
1998-11-25 16:39:47 +00:00
|
|
|
*/
|
2000-08-03 04:21:23 +00:00
|
|
|
static HRESULT WINAPI IShellLinkA_fnQueryInterface( IShellLinkA * iface, REFIID riid, LPVOID *ppvObj)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
|
|
|
ICOM_THIS(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2000-01-18 05:09:49 +00:00
|
|
|
TRACE("(%p)->(\n\tIID:\t%s)\n",This,debugstr_guid(riid));
|
1998-11-25 16:39:47 +00:00
|
|
|
|
1998-12-14 14:51:27 +00:00
|
|
|
*ppvObj = NULL;
|
1998-11-25 16:39:47 +00:00
|
|
|
|
1999-07-10 11:48:37 +00:00
|
|
|
if(IsEqualIID(riid, &IID_IUnknown) ||
|
2000-08-03 04:21:23 +00:00
|
|
|
IsEqualIID(riid, &IID_IShellLinkA))
|
1999-07-10 11:48:37 +00:00
|
|
|
{
|
|
|
|
*ppvObj = This;
|
2002-05-31 23:06:46 +00:00
|
|
|
}
|
1999-07-10 11:48:37 +00:00
|
|
|
else if(IsEqualIID(riid, &IID_IShellLinkW))
|
|
|
|
{
|
|
|
|
*ppvObj = (IShellLinkW *)&(This->lpvtblw);
|
2002-05-31 23:06:46 +00:00
|
|
|
}
|
1999-07-10 11:48:37 +00:00
|
|
|
else if(IsEqualIID(riid, &IID_IPersistFile))
|
|
|
|
{
|
|
|
|
*ppvObj = (IPersistFile *)&(This->lpvtblPersistFile);
|
|
|
|
}
|
|
|
|
else if(IsEqualIID(riid, &IID_IPersistStream))
|
|
|
|
{
|
|
|
|
*ppvObj = (IPersistStream *)&(This->lpvtblPersistStream);
|
2002-05-31 23:06:46 +00:00
|
|
|
}
|
1998-11-25 16:39:47 +00:00
|
|
|
|
1998-12-14 14:51:27 +00:00
|
|
|
if(*ppvObj)
|
1999-07-10 11:48:37 +00:00
|
|
|
{
|
|
|
|
IUnknown_AddRef((IUnknown*)(*ppvObj));
|
1999-06-12 15:45:58 +00:00
|
|
|
TRACE("-- Interface: (%p)->(%p)\n",ppvObj,*ppvObj);
|
1998-12-14 14:51:27 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
1999-06-12 15:45:58 +00:00
|
|
|
TRACE("-- Interface: E_NOINTERFACE\n");
|
1998-12-14 14:51:27 +00:00
|
|
|
return E_NOINTERFACE;
|
2002-05-31 23:06:46 +00:00
|
|
|
}
|
1998-11-25 16:39:47 +00:00
|
|
|
/******************************************************************************
|
2000-08-03 04:21:23 +00:00
|
|
|
* IShellLinkA_AddRef
|
1998-11-25 16:39:47 +00:00
|
|
|
*/
|
2000-08-03 04:21:23 +00:00
|
|
|
static ULONG WINAPI IShellLinkA_fnAddRef(IShellLinkA * iface)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
|
|
|
ICOM_THIS(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
1999-06-12 15:45:58 +00:00
|
|
|
TRACE("(%p)->(count=%lu)\n",This,This->ref);
|
1999-01-23 14:12:48 +00:00
|
|
|
|
1999-02-24 15:58:26 +00:00
|
|
|
return ++(This->ref);
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
|
|
|
/******************************************************************************
|
2000-08-03 04:21:23 +00:00
|
|
|
* IShellLinkA_Release
|
1998-11-25 16:39:47 +00:00
|
|
|
*/
|
2000-08-03 04:21:23 +00:00
|
|
|
static ULONG WINAPI IShellLinkA_fnRelease(IShellLinkA * iface)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
ICOM_THIS(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)->(count=%lu)\n",This,This->ref);
|
1999-01-23 14:12:48 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
if (--(This->ref))
|
|
|
|
return This->ref;
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("-- destroying IShellLink(%p)\n",This);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
if (This->sIcoPath)
|
|
|
|
HeapFree(GetProcessHeap(), 0, This->sIcoPath);
|
2000-11-02 20:22:07 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
if (This->sArgs)
|
|
|
|
HeapFree(GetProcessHeap(), 0, This->sArgs);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
if (This->sWorkDir)
|
|
|
|
HeapFree(GetProcessHeap(), 0, This->sWorkDir);
|
1999-07-10 11:48:37 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
if (This->sDescription)
|
|
|
|
HeapFree(GetProcessHeap(), 0, This->sDescription);
|
1999-07-10 11:48:37 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
if (This->sPath)
|
|
|
|
HeapFree(GetProcessHeap(),0,This->sPath);
|
1999-07-10 11:48:37 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
if (This->pPidl)
|
|
|
|
ILFree(This->pPidl);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
LocalFree((HANDLE)This);
|
1999-07-10 11:48:37 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
return 0;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
static HRESULT WINAPI IShellLinkA_fnGetPath(IShellLinkA * iface, LPSTR pszFile,
|
|
|
|
INT cchMaxPath, WIN32_FIND_DATAA *pfd, DWORD fFlags)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
ICOM_THIS(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)->(pfile=%p len=%u find_data=%p flags=%lu)(%s)\n",
|
|
|
|
This, pszFile, cchMaxPath, pfd, fFlags, debugstr_w(This->sPath));
|
1999-07-10 11:48:37 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
if( cchMaxPath )
|
|
|
|
pszFile[0] = 0;
|
|
|
|
if (This->sPath)
|
|
|
|
WideCharToMultiByte( CP_ACP, 0, This->sPath, -1,
|
|
|
|
pszFile, cchMaxPath, NULL, NULL);
|
1999-02-24 15:58:26 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
return NOERROR;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
2003-05-21 18:50:53 +00:00
|
|
|
|
2000-08-03 04:21:23 +00:00
|
|
|
static HRESULT WINAPI IShellLinkA_fnGetIDList(IShellLinkA * iface, LPITEMIDLIST * ppidl)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
|
|
|
ICOM_THIS(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
1999-06-12 15:45:58 +00:00
|
|
|
TRACE("(%p)->(ppidl=%p)\n",This, ppidl);
|
1999-02-24 15:58:26 +00:00
|
|
|
|
1999-07-10 11:48:37 +00:00
|
|
|
*ppidl = ILClone(This->pPidl);
|
2003-05-21 18:50:53 +00:00
|
|
|
|
1998-11-25 16:39:47 +00:00
|
|
|
return NOERROR;
|
|
|
|
}
|
2003-05-21 18:50:53 +00:00
|
|
|
|
2000-08-03 04:21:23 +00:00
|
|
|
static HRESULT WINAPI IShellLinkA_fnSetIDList(IShellLinkA * iface, LPCITEMIDLIST pidl)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
2004-03-25 23:36:45 +00:00
|
|
|
ICOM_THIS(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2004-03-25 23:36:45 +00:00
|
|
|
TRACE("(%p)->(pidl=%p)\n",This, pidl);
|
1999-02-24 15:58:26 +00:00
|
|
|
|
2004-03-25 23:36:45 +00:00
|
|
|
if (This->pPidl)
|
|
|
|
ILFree(This->pPidl);
|
|
|
|
This->pPidl = ILClone (pidl);
|
|
|
|
This->bDirty = TRUE;
|
2003-05-21 18:50:53 +00:00
|
|
|
|
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
2003-05-21 18:50:53 +00:00
|
|
|
|
2000-08-03 04:21:23 +00:00
|
|
|
static HRESULT WINAPI IShellLinkA_fnGetDescription(IShellLinkA * iface, LPSTR pszName,INT cchMaxName)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
ICOM_THIS(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)->(%p len=%u)\n",This, pszName, cchMaxName);
|
|
|
|
|
|
|
|
if( cchMaxName )
|
|
|
|
pszName[0] = 0;
|
|
|
|
if( This->sDescription )
|
|
|
|
WideCharToMultiByte( CP_ACP, 0, This->sDescription, -1,
|
|
|
|
pszName, cchMaxName, NULL, NULL);
|
|
|
|
|
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
2000-08-03 04:21:23 +00:00
|
|
|
static HRESULT WINAPI IShellLinkA_fnSetDescription(IShellLinkA * iface, LPCSTR pszName)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
ICOM_THIS(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)->(pName=%s)\n", This, pszName);
|
2000-11-02 20:22:07 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
if (This->sDescription)
|
|
|
|
HeapFree(GetProcessHeap(), 0, This->sDescription);
|
|
|
|
This->sDescription = HEAP_strdupAtoW( GetProcessHeap(), 0, pszName);
|
|
|
|
if ( !This->sDescription )
|
|
|
|
return E_OUTOFMEMORY;
|
2000-11-02 20:22:07 +00:00
|
|
|
|
2004-03-25 23:36:45 +00:00
|
|
|
This->bDirty = TRUE;
|
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
2003-05-21 18:50:53 +00:00
|
|
|
|
2000-08-03 04:21:23 +00:00
|
|
|
static HRESULT WINAPI IShellLinkA_fnGetWorkingDirectory(IShellLinkA * iface, LPSTR pszDir,INT cchMaxPath)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
ICOM_THIS(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)->(%p len=%u)\n", This, pszDir, cchMaxPath);
|
2001-02-12 01:17:39 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
if( cchMaxPath )
|
|
|
|
pszDir[0] = 0;
|
|
|
|
if( This->sWorkDir )
|
|
|
|
WideCharToMultiByte( CP_ACP, 0, This->sWorkDir, -1,
|
|
|
|
pszDir, cchMaxPath, NULL, NULL);
|
2001-02-12 01:17:39 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
2003-05-21 18:50:53 +00:00
|
|
|
|
2000-08-03 04:21:23 +00:00
|
|
|
static HRESULT WINAPI IShellLinkA_fnSetWorkingDirectory(IShellLinkA * iface, LPCSTR pszDir)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
ICOM_THIS(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)->(dir=%s)\n",This, pszDir);
|
2000-11-02 20:22:07 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
if (This->sWorkDir)
|
|
|
|
HeapFree(GetProcessHeap(), 0, This->sWorkDir);
|
|
|
|
This->sWorkDir = HEAP_strdupAtoW( GetProcessHeap(), 0, pszDir);
|
|
|
|
if ( !This->sWorkDir )
|
|
|
|
return E_OUTOFMEMORY;
|
2000-11-02 20:22:07 +00:00
|
|
|
|
2004-03-25 23:36:45 +00:00
|
|
|
This->bDirty = TRUE;
|
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
2003-05-21 18:50:53 +00:00
|
|
|
|
2000-08-03 04:21:23 +00:00
|
|
|
static HRESULT WINAPI IShellLinkA_fnGetArguments(IShellLinkA * iface, LPSTR pszArgs,INT cchMaxPath)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
ICOM_THIS(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)->(%p len=%u)\n", This, pszArgs, cchMaxPath);
|
2001-02-12 01:17:39 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
if( cchMaxPath )
|
|
|
|
pszArgs[0] = 0;
|
|
|
|
if( This->sArgs )
|
|
|
|
WideCharToMultiByte( CP_ACP, 0, This->sArgs, -1,
|
|
|
|
pszArgs, cchMaxPath, NULL, NULL);
|
2001-02-12 01:17:39 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
2003-05-21 18:50:53 +00:00
|
|
|
|
2000-08-03 04:21:23 +00:00
|
|
|
static HRESULT WINAPI IShellLinkA_fnSetArguments(IShellLinkA * iface, LPCSTR pszArgs)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
ICOM_THIS(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)->(args=%s)\n",This, pszArgs);
|
2000-11-02 20:22:07 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
if (This->sArgs)
|
|
|
|
HeapFree(GetProcessHeap(), 0, This->sArgs);
|
|
|
|
This->sArgs = HEAP_strdupAtoW( GetProcessHeap(), 0, pszArgs);
|
|
|
|
if( !This->sArgs )
|
|
|
|
return E_OUTOFMEMORY;
|
1999-07-10 11:48:37 +00:00
|
|
|
|
2004-03-25 23:36:45 +00:00
|
|
|
This->bDirty = TRUE;
|
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
2003-05-21 18:50:53 +00:00
|
|
|
|
2000-08-03 04:21:23 +00:00
|
|
|
static HRESULT WINAPI IShellLinkA_fnGetHotkey(IShellLinkA * iface, WORD *pwHotkey)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
|
|
|
ICOM_THIS(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
1999-07-10 11:48:37 +00:00
|
|
|
TRACE("(%p)->(%p)(0x%08x)\n",This, pwHotkey, This->wHotKey);
|
|
|
|
|
|
|
|
*pwHotkey = This->wHotKey;
|
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
2003-05-21 18:50:53 +00:00
|
|
|
|
2000-08-03 04:21:23 +00:00
|
|
|
static HRESULT WINAPI IShellLinkA_fnSetHotkey(IShellLinkA * iface, WORD wHotkey)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
|
|
|
ICOM_THIS(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
1999-07-10 11:48:37 +00:00
|
|
|
TRACE("(%p)->(hotkey=%x)\n",This, wHotkey);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
1999-07-10 11:48:37 +00:00
|
|
|
This->wHotKey = wHotkey;
|
2004-03-25 23:36:45 +00:00
|
|
|
This->bDirty = TRUE;
|
1999-07-10 11:48:37 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
2003-05-21 18:50:53 +00:00
|
|
|
|
2000-08-03 04:21:23 +00:00
|
|
|
static HRESULT WINAPI IShellLinkA_fnGetShowCmd(IShellLinkA * iface, INT *piShowCmd)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
ICOM_THIS(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)->(%p)\n",This, piShowCmd);
|
|
|
|
*piShowCmd = This->iShowCmd;
|
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
2003-05-21 18:50:53 +00:00
|
|
|
|
2000-08-03 04:21:23 +00:00
|
|
|
static HRESULT WINAPI IShellLinkA_fnSetShowCmd(IShellLinkA * iface, INT iShowCmd)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
ICOM_THIS(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p) %d\n",This, iShowCmd);
|
|
|
|
|
|
|
|
This->iShowCmd = iShowCmd;
|
2004-03-25 23:36:45 +00:00
|
|
|
This->bDirty = TRUE;
|
2003-05-21 18:50:53 +00:00
|
|
|
|
|
|
|
return NOERROR;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
2003-05-21 18:50:53 +00:00
|
|
|
|
2004-04-12 23:12:39 +00:00
|
|
|
static HRESULT SHELL_PidlGeticonLocationA(IShellFolder* psf, LPITEMIDLIST pidl, LPSTR pszIconPath, int cchIconPath, int* piIcon)
|
|
|
|
{
|
|
|
|
LPCITEMIDLIST pidlLast;
|
|
|
|
|
|
|
|
HRESULT hr = SHBindToParent(pidl, &IID_IShellFolder, (LPVOID*)&psf, &pidlLast);
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr)) {
|
|
|
|
IExtractIconA* pei;
|
|
|
|
|
|
|
|
hr = IShellFolder_GetUIObjectOf(psf, 0, 1, (LPCITEMIDLIST*)&pidlLast, &IID_IExtractIconA, NULL, (LPVOID*)&pei);
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr)) {
|
|
|
|
hr = IExtractIconA_GetIconLocation(pei, 0, pszIconPath, MAX_PATH, piIcon, NULL);
|
|
|
|
|
|
|
|
IExtractIconA_Release(pei);
|
|
|
|
}
|
|
|
|
|
|
|
|
IShellFolder_Release(psf);
|
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2000-08-03 04:21:23 +00:00
|
|
|
static HRESULT WINAPI IShellLinkA_fnGetIconLocation(IShellLinkA * iface, LPSTR pszIconPath,INT cchIconPath,INT *piIcon)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
ICOM_THIS(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)->(%p len=%u iicon=%p)\n", This, pszIconPath, cchIconPath, piIcon);
|
2001-02-12 01:17:39 +00:00
|
|
|
|
2004-04-12 23:12:39 +00:00
|
|
|
if (cchIconPath)
|
2003-05-21 18:50:53 +00:00
|
|
|
pszIconPath[0] = 0;
|
2001-02-12 01:17:39 +00:00
|
|
|
|
2004-04-12 23:12:39 +00:00
|
|
|
if (This->sIcoPath) {
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, This->sIcoPath, -1, pszIconPath, cchIconPath, NULL, NULL);
|
|
|
|
*piIcon = This->iIcoNdx;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (This->pPidl || This->sPath) {
|
|
|
|
IShellFolder* pdsk;
|
|
|
|
|
|
|
|
HRESULT hr = SHGetDesktopFolder(&pdsk);
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr)) {
|
|
|
|
/* first look for an icon using the PIDL (if present) */
|
|
|
|
if (This->pPidl)
|
|
|
|
hr = SHELL_PidlGeticonLocationA(pdsk, This->pPidl, pszIconPath, cchIconPath, piIcon);
|
|
|
|
else
|
|
|
|
hr = E_FAIL;
|
|
|
|
|
|
|
|
/* if we couldn't find an icon yet, look for it using the file system path */
|
|
|
|
if (FAILED(hr) && This->sPath) {
|
|
|
|
LPITEMIDLIST pidl;
|
|
|
|
|
|
|
|
hr = IShellFolder_ParseDisplayName(pdsk, 0, NULL, This->sPath, NULL, &pidl, NULL);
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr)) {
|
|
|
|
hr = SHELL_PidlGeticonLocationA(pdsk, pidl, pszIconPath, cchIconPath, piIcon);
|
|
|
|
|
|
|
|
SHFree(pidl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
IShellFolder_Release(pdsk);
|
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
} else
|
|
|
|
return E_FAIL;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
2003-05-21 18:50:53 +00:00
|
|
|
|
2000-08-03 04:21:23 +00:00
|
|
|
static HRESULT WINAPI IShellLinkA_fnSetIconLocation(IShellLinkA * iface, LPCSTR pszIconPath,INT iIcon)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
ICOM_THIS(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)->(path=%s iicon=%u)\n",This, pszIconPath, iIcon);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
if (This->sIcoPath)
|
|
|
|
HeapFree(GetProcessHeap(), 0, This->sIcoPath);
|
|
|
|
This->sIcoPath = HEAP_strdupAtoW(GetProcessHeap(), 0, pszIconPath);
|
|
|
|
if ( !This->sIcoPath )
|
|
|
|
return E_OUTOFMEMORY;
|
2004-03-25 23:36:45 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
This->iIcoNdx = iIcon;
|
2004-03-25 23:36:45 +00:00
|
|
|
This->bDirty = TRUE;
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
2003-05-21 18:50:53 +00:00
|
|
|
|
2000-08-03 04:21:23 +00:00
|
|
|
static HRESULT WINAPI IShellLinkA_fnSetRelativePath(IShellLinkA * iface, LPCSTR pszPathRel, DWORD dwReserved)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
ICOM_THIS(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
FIXME("(%p)->(path=%s %lx)\n",This, pszPathRel, dwReserved);
|
|
|
|
|
|
|
|
if (This->sPathRel)
|
|
|
|
HeapFree(GetProcessHeap(), 0, This->sPathRel);
|
|
|
|
This->sPathRel = HEAP_strdupAtoW(GetProcessHeap(), 0, pszPathRel);
|
2004-03-25 23:36:45 +00:00
|
|
|
This->bDirty = TRUE;
|
2003-05-21 18:50:53 +00:00
|
|
|
|
2004-04-05 20:12:57 +00:00
|
|
|
return ShellLink_UpdatePath(This->sPathRel, This->sPath, This->sWorkDir, &This->sPath);
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
2003-05-21 18:50:53 +00:00
|
|
|
|
2000-08-03 04:21:23 +00:00
|
|
|
static HRESULT WINAPI IShellLinkA_fnResolve(IShellLinkA * iface, HWND hwnd, DWORD fFlags)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
|
|
|
ICOM_THIS(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2002-11-21 23:56:42 +00:00
|
|
|
FIXME("(%p)->(hwnd=%p flags=%lx)\n",This, hwnd, fFlags);
|
2003-05-21 18:50:53 +00:00
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
2003-05-21 18:50:53 +00:00
|
|
|
|
2000-08-03 04:21:23 +00:00
|
|
|
static HRESULT WINAPI IShellLinkA_fnSetPath(IShellLinkA * iface, LPCSTR pszFile)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
ICOM_THIS(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)->(path=%s)\n",This, pszFile);
|
2000-11-02 20:22:07 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
if (This->sPath)
|
|
|
|
HeapFree(GetProcessHeap(), 0, This->sPath);
|
|
|
|
This->sPath = HEAP_strdupAtoW(GetProcessHeap(), 0, pszFile);
|
|
|
|
if( !This->sPath )
|
|
|
|
return E_OUTOFMEMORY;
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2004-03-25 23:36:45 +00:00
|
|
|
This->bDirty = TRUE;
|
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
|
|
|
|
1999-02-24 15:58:26 +00:00
|
|
|
/**************************************************************************
|
|
|
|
* IShellLink Implementation
|
|
|
|
*/
|
|
|
|
|
2004-08-12 23:00:51 +00:00
|
|
|
static IShellLinkAVtbl slvt =
|
2002-05-31 23:06:46 +00:00
|
|
|
{
|
1999-05-22 11:41:38 +00:00
|
|
|
ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
|
2000-08-03 04:21:23 +00:00
|
|
|
IShellLinkA_fnQueryInterface,
|
|
|
|
IShellLinkA_fnAddRef,
|
|
|
|
IShellLinkA_fnRelease,
|
|
|
|
IShellLinkA_fnGetPath,
|
|
|
|
IShellLinkA_fnGetIDList,
|
|
|
|
IShellLinkA_fnSetIDList,
|
|
|
|
IShellLinkA_fnGetDescription,
|
|
|
|
IShellLinkA_fnSetDescription,
|
|
|
|
IShellLinkA_fnGetWorkingDirectory,
|
|
|
|
IShellLinkA_fnSetWorkingDirectory,
|
|
|
|
IShellLinkA_fnGetArguments,
|
|
|
|
IShellLinkA_fnSetArguments,
|
|
|
|
IShellLinkA_fnGetHotkey,
|
|
|
|
IShellLinkA_fnSetHotkey,
|
|
|
|
IShellLinkA_fnGetShowCmd,
|
|
|
|
IShellLinkA_fnSetShowCmd,
|
|
|
|
IShellLinkA_fnGetIconLocation,
|
|
|
|
IShellLinkA_fnSetIconLocation,
|
|
|
|
IShellLinkA_fnSetRelativePath,
|
|
|
|
IShellLinkA_fnResolve,
|
|
|
|
IShellLinkA_fnSetPath
|
1999-02-24 15:58:26 +00:00
|
|
|
};
|
|
|
|
|
1998-11-25 16:39:47 +00:00
|
|
|
|
|
|
|
/**************************************************************************
|
1999-02-24 15:58:26 +00:00
|
|
|
* IShellLinkW_fnQueryInterface
|
1998-11-25 16:39:47 +00:00
|
|
|
*/
|
1999-02-24 15:58:26 +00:00
|
|
|
static HRESULT WINAPI IShellLinkW_fnQueryInterface(
|
|
|
|
IShellLinkW * iface, REFIID riid, LPVOID *ppvObj)
|
|
|
|
{
|
1999-07-10 11:48:37 +00:00
|
|
|
_ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2000-08-03 04:21:23 +00:00
|
|
|
return IShellLinkA_QueryInterface((IShellLinkA*)This, riid, ppvObj);
|
1999-07-10 11:48:37 +00:00
|
|
|
}
|
1999-02-24 15:58:26 +00:00
|
|
|
|
1998-11-25 16:39:47 +00:00
|
|
|
/******************************************************************************
|
1999-02-24 15:58:26 +00:00
|
|
|
* IShellLinkW_fnAddRef
|
1998-11-25 16:39:47 +00:00
|
|
|
*/
|
1999-02-24 15:58:26 +00:00
|
|
|
static ULONG WINAPI IShellLinkW_fnAddRef(IShellLinkW * iface)
|
|
|
|
{
|
1999-07-10 11:48:37 +00:00
|
|
|
_ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
1999-06-12 15:45:58 +00:00
|
|
|
TRACE("(%p)->(count=%lu)\n",This,This->ref);
|
1999-01-23 14:12:48 +00:00
|
|
|
|
2000-08-03 04:21:23 +00:00
|
|
|
return IShellLinkA_AddRef((IShellLinkA*)This);
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
|
|
|
/******************************************************************************
|
1999-02-24 15:58:26 +00:00
|
|
|
* IShellLinkW_fnRelease
|
1998-11-25 16:39:47 +00:00
|
|
|
*/
|
1999-02-24 15:58:26 +00:00
|
|
|
|
|
|
|
static ULONG WINAPI IShellLinkW_fnRelease(IShellLinkW * iface)
|
|
|
|
{
|
1999-07-10 11:48:37 +00:00
|
|
|
_ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
1999-06-12 15:45:58 +00:00
|
|
|
TRACE("(%p)->(count=%lu)\n",This,This->ref);
|
1999-01-23 14:12:48 +00:00
|
|
|
|
2000-08-03 04:21:23 +00:00
|
|
|
return IShellLinkA_Release((IShellLinkA*)This);
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
|
|
|
|
2003-09-04 19:43:39 +00:00
|
|
|
static HRESULT WINAPI IShellLinkW_fnGetPath(IShellLinkW * iface, LPWSTR pszFile,INT cchMaxPath, WIN32_FIND_DATAW *pfd, DWORD fFlags)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
_ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
FIXME("(%p)->(pfile=%p len=%u find_data=%p flags=%lu)\n",This, pszFile, cchMaxPath, pfd, fFlags);
|
|
|
|
if( cchMaxPath )
|
|
|
|
pszFile[0] = 0;
|
|
|
|
if( This->sPath )
|
|
|
|
lstrcpynW( pszFile, This->sPath, cchMaxPath );
|
|
|
|
|
|
|
|
return NOERROR;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
1999-02-24 15:58:26 +00:00
|
|
|
|
|
|
|
static HRESULT WINAPI IShellLinkW_fnGetIDList(IShellLinkW * iface, LPITEMIDLIST * ppidl)
|
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
_ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)->(ppidl=%p)\n",This, ppidl);
|
|
|
|
|
|
|
|
if( This->pPidl)
|
|
|
|
*ppidl = ILClone( This->pPidl );
|
|
|
|
else
|
|
|
|
*ppidl = NULL;
|
|
|
|
|
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
1999-02-24 15:58:26 +00:00
|
|
|
|
|
|
|
static HRESULT WINAPI IShellLinkW_fnSetIDList(IShellLinkW * iface, LPCITEMIDLIST pidl)
|
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
_ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)->(pidl=%p)\n",This, pidl);
|
|
|
|
|
|
|
|
if( This->pPidl )
|
|
|
|
ILFree( This->pPidl );
|
|
|
|
This->pPidl = ILClone( pidl );
|
|
|
|
if( !This->pPidl )
|
|
|
|
return E_FAIL;
|
|
|
|
|
2004-03-25 23:36:45 +00:00
|
|
|
This->bDirty = TRUE;
|
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
1999-02-24 15:58:26 +00:00
|
|
|
|
1999-02-26 11:11:13 +00:00
|
|
|
static HRESULT WINAPI IShellLinkW_fnGetDescription(IShellLinkW * iface, LPWSTR pszName,INT cchMaxName)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
_ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)->(%p len=%u)\n",This, pszName, cchMaxName);
|
|
|
|
|
|
|
|
if( cchMaxName )
|
|
|
|
pszName[0] = 0;
|
|
|
|
if( This->sDescription )
|
|
|
|
lstrcpynW( pszName, This->sDescription, cchMaxName );
|
|
|
|
|
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
1999-02-24 15:58:26 +00:00
|
|
|
|
|
|
|
static HRESULT WINAPI IShellLinkW_fnSetDescription(IShellLinkW * iface, LPCWSTR pszName)
|
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
_ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)->(desc=%s)\n",This, debugstr_w(pszName));
|
2000-11-02 20:22:07 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
if (This->sDescription)
|
|
|
|
HeapFree(GetProcessHeap(), 0, This->sDescription);
|
|
|
|
This->sDescription = HeapAlloc( GetProcessHeap(), 0,
|
|
|
|
(lstrlenW( pszName )+1)*sizeof(WCHAR) );
|
|
|
|
if ( !This->sDescription )
|
|
|
|
return E_OUTOFMEMORY;
|
2004-03-25 23:36:45 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
lstrcpyW( This->sDescription, pszName );
|
2004-03-25 23:36:45 +00:00
|
|
|
This->bDirty = TRUE;
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
1999-02-24 15:58:26 +00:00
|
|
|
|
1999-02-26 11:11:13 +00:00
|
|
|
static HRESULT WINAPI IShellLinkW_fnGetWorkingDirectory(IShellLinkW * iface, LPWSTR pszDir,INT cchMaxPath)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
_ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)->(%p len %u)\n", This, pszDir, cchMaxPath);
|
2001-02-12 01:17:39 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
if( cchMaxPath )
|
|
|
|
pszDir[0] = 0;
|
|
|
|
if( This->sWorkDir )
|
|
|
|
lstrcpynW( pszDir, This->sWorkDir, cchMaxPath );
|
2001-02-12 01:17:39 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
1999-02-24 15:58:26 +00:00
|
|
|
|
|
|
|
static HRESULT WINAPI IShellLinkW_fnSetWorkingDirectory(IShellLinkW * iface, LPCWSTR pszDir)
|
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
_ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)->(dir=%s)\n",This, debugstr_w(pszDir));
|
2000-11-02 20:22:07 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
if (This->sWorkDir)
|
|
|
|
HeapFree(GetProcessHeap(), 0, This->sWorkDir);
|
|
|
|
This->sWorkDir = HeapAlloc( GetProcessHeap(), 0,
|
|
|
|
(lstrlenW( pszDir )+1)*sizeof (WCHAR) );
|
|
|
|
if ( !This->sWorkDir )
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
lstrcpyW( This->sWorkDir, pszDir );
|
2004-03-25 23:36:45 +00:00
|
|
|
This->bDirty = TRUE;
|
2000-11-02 20:22:07 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
1999-02-24 15:58:26 +00:00
|
|
|
|
1999-02-26 11:11:13 +00:00
|
|
|
static HRESULT WINAPI IShellLinkW_fnGetArguments(IShellLinkW * iface, LPWSTR pszArgs,INT cchMaxPath)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
_ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)->(%p len=%u)\n", This, pszArgs, cchMaxPath);
|
2001-02-12 01:17:39 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
if( cchMaxPath )
|
|
|
|
pszArgs[0] = 0;
|
|
|
|
if( This->sArgs )
|
|
|
|
lstrcpynW( pszArgs, This->sArgs, cchMaxPath );
|
2001-02-12 01:17:39 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
return NOERROR;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
1999-02-24 15:58:26 +00:00
|
|
|
|
|
|
|
static HRESULT WINAPI IShellLinkW_fnSetArguments(IShellLinkW * iface, LPCWSTR pszArgs)
|
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
_ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)->(args=%s)\n",This, debugstr_w(pszArgs));
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
if (This->sArgs)
|
|
|
|
HeapFree(GetProcessHeap(), 0, This->sArgs);
|
|
|
|
This->sArgs = HeapAlloc( GetProcessHeap(), 0,
|
|
|
|
(lstrlenW( pszArgs )+1)*sizeof (WCHAR) );
|
|
|
|
if ( !This->sArgs )
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
lstrcpyW( This->sArgs, pszArgs );
|
2004-03-25 23:36:45 +00:00
|
|
|
This->bDirty = TRUE;
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
1999-02-24 15:58:26 +00:00
|
|
|
|
|
|
|
static HRESULT WINAPI IShellLinkW_fnGetHotkey(IShellLinkW * iface, WORD *pwHotkey)
|
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
_ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)->(%p)\n",This, pwHotkey);
|
|
|
|
|
|
|
|
*pwHotkey=This->wHotKey;
|
|
|
|
|
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
1999-02-24 15:58:26 +00:00
|
|
|
|
|
|
|
static HRESULT WINAPI IShellLinkW_fnSetHotkey(IShellLinkW * iface, WORD wHotkey)
|
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
_ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)->(hotkey=%x)\n",This, wHotkey);
|
|
|
|
|
|
|
|
This->wHotKey = wHotkey;
|
2004-03-25 23:36:45 +00:00
|
|
|
This->bDirty = TRUE;
|
2003-05-21 18:50:53 +00:00
|
|
|
|
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
1999-02-24 15:58:26 +00:00
|
|
|
|
1999-02-26 11:11:13 +00:00
|
|
|
static HRESULT WINAPI IShellLinkW_fnGetShowCmd(IShellLinkW * iface, INT *piShowCmd)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
_ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)->(%p)\n",This, piShowCmd);
|
|
|
|
|
|
|
|
*piShowCmd = This->iShowCmd;
|
|
|
|
|
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
1999-02-24 15:58:26 +00:00
|
|
|
|
1999-02-26 11:11:13 +00:00
|
|
|
static HRESULT WINAPI IShellLinkW_fnSetShowCmd(IShellLinkW * iface, INT iShowCmd)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
_ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
This->iShowCmd = iShowCmd;
|
2004-03-25 23:36:45 +00:00
|
|
|
This->bDirty = TRUE;
|
2003-05-21 18:50:53 +00:00
|
|
|
|
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
1999-02-24 15:58:26 +00:00
|
|
|
|
2004-04-12 23:12:39 +00:00
|
|
|
static HRESULT SHELL_PidlGeticonLocationW(IShellFolder* psf, LPITEMIDLIST pidl, LPWSTR pszIconPath, int cchIconPath, int* piIcon)
|
|
|
|
{
|
|
|
|
LPCITEMIDLIST pidlLast;
|
|
|
|
|
|
|
|
HRESULT hr = SHBindToParent(pidl, &IID_IShellFolder, (LPVOID*)&psf, &pidlLast);
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr)) {
|
|
|
|
IExtractIconW* pei;
|
|
|
|
|
|
|
|
hr = IShellFolder_GetUIObjectOf(psf, 0, 1, (LPCITEMIDLIST*)&pidlLast, &IID_IExtractIconW, NULL, (LPVOID*)&pei);
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr)) {
|
|
|
|
hr = IExtractIconW_GetIconLocation(pei, 0, pszIconPath, MAX_PATH, piIcon, NULL);
|
|
|
|
|
|
|
|
IExtractIconW_Release(pei);
|
|
|
|
}
|
|
|
|
|
|
|
|
IShellFolder_Release(psf);
|
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
1999-02-26 11:11:13 +00:00
|
|
|
static HRESULT WINAPI IShellLinkW_fnGetIconLocation(IShellLinkW * iface, LPWSTR pszIconPath,INT cchIconPath,INT *piIcon)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
_ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)->(%p len=%u iicon=%p)\n", This, pszIconPath, cchIconPath, piIcon);
|
2001-02-12 01:17:39 +00:00
|
|
|
|
2004-04-12 23:12:39 +00:00
|
|
|
if (cchIconPath)
|
2003-05-21 18:50:53 +00:00
|
|
|
pszIconPath[0] = 0;
|
2001-02-12 01:17:39 +00:00
|
|
|
|
2004-04-12 23:12:39 +00:00
|
|
|
if (This->sIcoPath) {
|
|
|
|
lstrcpynW(pszIconPath, This->sIcoPath, cchIconPath);
|
|
|
|
*piIcon = This->iIcoNdx;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (This->pPidl || This->sPath) {
|
|
|
|
IShellFolder* pdsk;
|
|
|
|
|
|
|
|
HRESULT hr = SHGetDesktopFolder(&pdsk);
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr)) {
|
|
|
|
/* first look for an icon using the PIDL (if present) */
|
|
|
|
if (This->pPidl)
|
|
|
|
hr = SHELL_PidlGeticonLocationW(pdsk, This->pPidl, pszIconPath, cchIconPath, piIcon);
|
|
|
|
else
|
|
|
|
hr = E_FAIL;
|
|
|
|
|
|
|
|
/* if we couldn't find an icon yet, look for it using the file system path */
|
|
|
|
if (FAILED(hr) && This->sPath) {
|
|
|
|
LPITEMIDLIST pidl;
|
|
|
|
|
|
|
|
hr = IShellFolder_ParseDisplayName(pdsk, 0, NULL, This->sPath, NULL, &pidl, NULL);
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr)) {
|
|
|
|
hr = SHELL_PidlGeticonLocationW(pdsk, pidl, pszIconPath, cchIconPath, piIcon);
|
|
|
|
|
|
|
|
SHFree(pidl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
IShellFolder_Release(pdsk);
|
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
} else
|
|
|
|
return E_FAIL;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
1999-02-24 15:58:26 +00:00
|
|
|
|
1999-02-26 11:11:13 +00:00
|
|
|
static HRESULT WINAPI IShellLinkW_fnSetIconLocation(IShellLinkW * iface, LPCWSTR pszIconPath,INT iIcon)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
_ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)->(path=%s iicon=%u)\n",This, debugstr_w(pszIconPath), iIcon);
|
2000-11-02 20:22:07 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
if (This->sIcoPath)
|
|
|
|
HeapFree(GetProcessHeap(), 0, This->sIcoPath);
|
|
|
|
This->sIcoPath = HeapAlloc( GetProcessHeap(), 0,
|
|
|
|
(lstrlenW( pszIconPath )+1)*sizeof (WCHAR) );
|
|
|
|
if ( !This->sIcoPath )
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
lstrcpyW( This->sIcoPath, pszIconPath );
|
2000-11-02 20:22:07 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
This->iIcoNdx = iIcon;
|
2004-03-25 23:36:45 +00:00
|
|
|
This->bDirty = TRUE;
|
2003-05-21 18:50:53 +00:00
|
|
|
|
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
1999-02-24 15:58:26 +00:00
|
|
|
|
|
|
|
static HRESULT WINAPI IShellLinkW_fnSetRelativePath(IShellLinkW * iface, LPCWSTR pszPathRel, DWORD dwReserved)
|
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
_ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)->(path=%s %lx)\n",This, debugstr_w(pszPathRel), dwReserved);
|
|
|
|
|
|
|
|
if (This->sPathRel)
|
|
|
|
HeapFree(GetProcessHeap(), 0, This->sPathRel);
|
|
|
|
This->sPathRel = HeapAlloc( GetProcessHeap(), 0,
|
|
|
|
(lstrlenW( pszPathRel )+1) * sizeof (WCHAR) );
|
|
|
|
if ( !This->sPathRel )
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
lstrcpyW( This->sPathRel, pszPathRel );
|
2004-03-25 23:36:45 +00:00
|
|
|
This->bDirty = TRUE;
|
2003-05-21 18:50:53 +00:00
|
|
|
|
2004-04-05 20:12:57 +00:00
|
|
|
return ShellLink_UpdatePath(This->sPathRel, This->sPath, This->sWorkDir, &This->sPath);
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
1999-02-24 15:58:26 +00:00
|
|
|
|
1999-02-26 11:11:13 +00:00
|
|
|
static HRESULT WINAPI IShellLinkW_fnResolve(IShellLinkW * iface, HWND hwnd, DWORD fFlags)
|
1999-02-24 15:58:26 +00:00
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
_ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
FIXME("(%p)->(hwnd=%p flags=%lx)\n",This, hwnd, fFlags);
|
|
|
|
|
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
1999-02-24 15:58:26 +00:00
|
|
|
|
|
|
|
static HRESULT WINAPI IShellLinkW_fnSetPath(IShellLinkW * iface, LPCWSTR pszFile)
|
|
|
|
{
|
2003-05-21 18:50:53 +00:00
|
|
|
_ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
TRACE("(%p)->(path=%s)\n",This, debugstr_w(pszFile));
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
if (This->sPath)
|
|
|
|
HeapFree(GetProcessHeap(), 0, This->sPath);
|
|
|
|
This->sPath = HeapAlloc( GetProcessHeap(), 0,
|
|
|
|
(lstrlenW( pszFile )+1) * sizeof (WCHAR) );
|
|
|
|
if ( !This->sPath )
|
|
|
|
return E_OUTOFMEMORY;
|
2004-03-25 23:36:45 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
lstrcpyW( This->sPath, pszFile );
|
2004-03-25 23:36:45 +00:00
|
|
|
This->bDirty = TRUE;
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-05-21 18:50:53 +00:00
|
|
|
return S_OK;
|
1998-11-25 16:39:47 +00:00
|
|
|
}
|
|
|
|
|
1999-02-24 15:58:26 +00:00
|
|
|
/**************************************************************************
|
|
|
|
* IShellLinkW Implementation
|
|
|
|
*/
|
|
|
|
|
2004-08-12 23:00:51 +00:00
|
|
|
static IShellLinkWVtbl slvtw =
|
2002-05-31 23:06:46 +00:00
|
|
|
{
|
1999-05-22 11:41:38 +00:00
|
|
|
ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
|
|
|
|
IShellLinkW_fnQueryInterface,
|
1999-02-24 15:58:26 +00:00
|
|
|
IShellLinkW_fnAddRef,
|
|
|
|
IShellLinkW_fnRelease,
|
|
|
|
IShellLinkW_fnGetPath,
|
|
|
|
IShellLinkW_fnGetIDList,
|
|
|
|
IShellLinkW_fnSetIDList,
|
|
|
|
IShellLinkW_fnGetDescription,
|
|
|
|
IShellLinkW_fnSetDescription,
|
|
|
|
IShellLinkW_fnGetWorkingDirectory,
|
|
|
|
IShellLinkW_fnSetWorkingDirectory,
|
|
|
|
IShellLinkW_fnGetArguments,
|
|
|
|
IShellLinkW_fnSetArguments,
|
|
|
|
IShellLinkW_fnGetHotkey,
|
|
|
|
IShellLinkW_fnSetHotkey,
|
|
|
|
IShellLinkW_fnGetShowCmd,
|
|
|
|
IShellLinkW_fnSetShowCmd,
|
|
|
|
IShellLinkW_fnGetIconLocation,
|
|
|
|
IShellLinkW_fnSetIconLocation,
|
|
|
|
IShellLinkW_fnSetRelativePath,
|
|
|
|
IShellLinkW_fnResolve,
|
|
|
|
IShellLinkW_fnSetPath
|
|
|
|
};
|