added some FIXME comments to ShellExecuteExA32()

svn path=/trunk/; revision=7472
This commit is contained in:
Martin Fuchs 2004-01-06 11:10:23 +00:00
parent 06983e9ad1
commit 4562169f04

View file

@ -798,6 +798,9 @@ HINSTANCE WINAPI FindExecutableW(LPCWSTR lpFile, LPCWSTR lpDirectory, LPWSTR lpR
/*************************************************************************
* ShellExecuteExA32 [Internal]
*
* FIXME: use PathResolveA() to search for the fully qualified executable path
* use PathProcessCommandA() to processes the command line string
*/
BOOL WINAPI ShellExecuteExA32 (LPSHELLEXECUTEINFOA sei, SHELL_ExecuteA1632 execfunc)
{
@ -967,6 +970,7 @@ BOOL WINAPI ShellExecuteExA32 (LPSHELLEXECUTEINFOA sei, SHELL_ExecuteA1632 execf
}
else
{
/*FIXME This search loop should be moved into CreateProcess() ? */
LPSTR space, s;
char buffer[MAX_PATH], xlpFile[MAX_PATH];