Author: gedmurphy
Date: Fri Jul 13 02:02:47 2007
New Revision: 27619
URL:
http://svn.reactos.org/svn/reactos?rev=27619&view=rev
Log:
add a note as to why I hackfixed it, so I don't forget
Modified:
trunk/reactos/dll/win32/syssetup/install.c
Modified: trunk/reactos/dll/win32/syssetup/install.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/syssetup/install…
==============================================================================
--- trunk/reactos/dll/win32/syssetup/install.c (original)
+++ trunk/reactos/dll/win32/syssetup/install.c Fri Jul 13 02:02:47 2007
@@ -211,6 +211,9 @@
if (!LoadString(hDllInstance, nIdTitle, title, sizeof(title)/sizeof(title[0])))
return FALSE;
+ // FIXME: we should pass 'command' straight in here, but shell32 doesn't
+ // expand it, and explorer uses ShellExecuteEx anyway instead of calling
+ // shell32's STDMETHODCALLTYPE Resolve / IShellLinkW_fnResolve
return SUCCEEDED(CreateShellLink(path, exeName, _T(""), lpWorkingDir, NULL,
0, title));
}