2 * Shell Library Functions
4 * Copyright 1998 Marcus Meissner
5 * Copyright 2002 Eric Pouech
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "wine/port.h"
45 #include "wine/winbase16.h"
46 #include "shell32_main.h"
49 #include "wine/debug.h"
51 WINE_DEFAULT_DEBUG_CHANNEL(exec);
53 static const WCHAR wszOpen[] = {'o','p','e','n',0};
54 static const WCHAR wszExe[] = {'.','e','x','e',0};
55 static const WCHAR wszILPtr[] = {':','%','p',0};
56 static const WCHAR wszShell[] = {'\\','s','h','e','l','l','\\',0};
57 static const WCHAR wszFolder[] = {'F','o','l','d','e','r',0};
58 static const WCHAR wszEmpty[] = {0};
60 #define SEE_MASK_CLASSALL (SEE_MASK_CLASSNAME | SEE_MASK_CLASSKEY)
63 /***********************************************************************
64 * SHELL_ArgifyW [Internal]
66 * this function is supposed to expand the escape sequences found in the registry
67 * some diving reported that the following were used:
68 * + %1, %2... seem to report to parameter of index N in ShellExecute pmts
73 * %I address of a global item ID (explorer switch /idlist)
74 * %L seems to be %1 as long filename followed by the 8+3 variation
76 * %* all following parameters (see batfile)
79 static BOOL SHELL_ArgifyW(WCHAR* out, int len, const WCHAR* fmt, const WCHAR* lpFile, LPITEMIDLIST pidl, LPCWSTR args, DWORD* out_len)
83 BOOL found_p1 = FALSE;
88 TRACE("%p, %d, %s, %s, %p, %p\n", out, len, debugstr_w(fmt),
89 debugstr_w(lpFile), pidl, args);
135 while(*args && !isspace(*args))
144 while(isspace(*args))
149 /* else fall through */
151 if (!done || (*fmt == '1'))
153 /*FIXME Is the call to SearchPathW() really needed? We already have separated out the parameter string in args. */
154 if (SearchPathW(NULL, lpFile, wszExe, sizeof(xlpFile)/sizeof(WCHAR), xlpFile, NULL))
159 used += strlenW(cmd);
170 * IE uses this a lot for activating things such as windows media
171 * player. This is not verified to be fully correct but it appears
177 used += strlenW(lpFile);
180 strcpyW(res, lpFile);
181 res += strlenW(lpFile);
191 /* %p should not exceed 8, maybe 16 when looking foward to 64bit.
192 * allowing a buffer of 100 should more than exceed all needs */
195 HGLOBAL hmem = SHAllocShared(pidl, ILGetSize(pidl), 0);
196 pv = SHLockShared(hmem, 0);
197 chars = sprintfW(buf, wszILPtr, pv);
198 if (chars >= sizeof(buf)/sizeof(WCHAR))
199 ERR("pidl format buffer too small!\n");
213 * Check if this is an env-variable here...
216 /* Make sure that we have at least one more %.*/
217 if (strchrW(fmt, '%'))
219 WCHAR tmpBuffer[1024];
220 PWSTR tmpB = tmpBuffer;
221 WCHAR tmpEnvBuff[MAX_PATH];
228 TRACE("Checking %s to be an env-var\n", debugstr_w(tmpBuffer));
230 envRet = GetEnvironmentVariableW(tmpBuffer, tmpEnvBuff, MAX_PATH);
231 if (envRet == 0 || envRet > MAX_PATH)
233 used += strlenW(tmpBuffer);
236 strcpyW( res, tmpBuffer );
237 res += strlenW(tmpBuffer);
242 used += strlenW(tmpEnvBuff);
245 strcpyW( res, tmpEnvBuff );
246 res += strlenW(tmpEnvBuff);
253 /* Don't skip past terminator (catch a single '%' at the end) */
270 TRACE("used %i of %i space\n",used,len);
277 static HRESULT SHELL_GetPathFromIDListForExecuteW(LPCITEMIDLIST pidl, LPWSTR pszPath, UINT uOutSize)
280 IShellFolder* desktop;
282 HRESULT hr = SHGetDesktopFolder(&desktop);
285 hr = IShellFolder_GetDisplayNameOf(desktop, pidl, SHGDN_FORPARSING, &strret);
288 StrRetToStrNW(pszPath, uOutSize, &strret, pidl);
290 IShellFolder_Release(desktop);
296 /*************************************************************************
297 * SHELL_ExecuteW [Internal]
300 static UINT_PTR SHELL_ExecuteW(const WCHAR *lpCmd, WCHAR *env, BOOL shWait,
301 LPSHELLEXECUTEINFOW psei, LPSHELLEXECUTEINFOW psei_out)
303 STARTUPINFOW startup;
304 PROCESS_INFORMATION info;
305 UINT_PTR retval = SE_ERR_NOASSOC;
307 WCHAR curdir[MAX_PATH];
308 DWORD dwCreationFlags;
309 const WCHAR *lpDirectory = NULL;
311 TRACE("Execute %s from directory %s\n", debugstr_w(lpCmd), debugstr_w(psei->lpDirectory));
313 /* make sure we don't fail the CreateProcess if the calling app passes in
314 * a bad working directory */
315 if (psei->lpDirectory && psei->lpDirectory[0])
317 DWORD attr = GetFileAttributesW(psei->lpDirectory);
318 if (attr != INVALID_FILE_ATTRIBUTES && attr & FILE_ATTRIBUTE_DIRECTORY)
319 lpDirectory = psei->lpDirectory;
322 /* ShellExecute specifies the command from psei->lpDirectory
323 * if present. Not from the current dir as CreateProcess does */
325 if( ( gcdret = GetCurrentDirectoryW( MAX_PATH, curdir)))
326 if( !SetCurrentDirectoryW( lpDirectory))
327 ERR("cannot set directory %s\n", debugstr_w(lpDirectory));
328 ZeroMemory(&startup,sizeof(STARTUPINFOW));
329 startup.cb = sizeof(STARTUPINFOW);
330 startup.dwFlags = STARTF_USESHOWWINDOW;
331 startup.wShowWindow = psei->nShow;
332 dwCreationFlags = CREATE_UNICODE_ENVIRONMENT;
333 if (psei->fMask & SEE_MASK_NO_CONSOLE)
334 dwCreationFlags |= CREATE_NEW_CONSOLE;
335 if (CreateProcessW(NULL, (LPWSTR)lpCmd, NULL, NULL, FALSE, dwCreationFlags, env,
336 lpDirectory, &startup, &info))
338 /* Give 30 seconds to the app to come up, if desired. Probably only needed
339 when starting app immediately before making a DDE connection. */
341 if (WaitForInputIdle( info.hProcess, 30000 ) == WAIT_FAILED)
342 WARN("WaitForInputIdle failed: Error %d\n", GetLastError() );
344 if (psei->fMask & SEE_MASK_NOCLOSEPROCESS)
345 psei_out->hProcess = info.hProcess;
347 CloseHandle( info.hProcess );
348 CloseHandle( info.hThread );
350 else if ((retval = GetLastError()) >= 32)
352 TRACE("CreateProcess returned error %ld\n", retval);
353 retval = ERROR_BAD_FORMAT;
356 TRACE("returning %lu\n", retval);
358 psei_out->hInstApp = (HINSTANCE)retval;
360 if( !SetCurrentDirectoryW( curdir))
361 ERR("cannot return to directory %s\n", debugstr_w(curdir));
367 /***********************************************************************
368 * SHELL_BuildEnvW [Internal]
370 * Build the environment for the new process, adding the specified
371 * path to the PATH variable. Returned pointer must be freed by caller.
373 static void *SHELL_BuildEnvW( const WCHAR *path )
375 static const WCHAR wPath[] = {'P','A','T','H','=',0};
376 WCHAR *strings, *new_env;
378 int total = strlenW(path) + 1;
379 BOOL got_path = FALSE;
381 if (!(strings = GetEnvironmentStringsW())) return NULL;
385 int len = strlenW(p) + 1;
386 if (!strncmpiW( p, wPath, 5 )) got_path = TRUE;
390 if (!got_path) total += 5; /* we need to create PATH */
391 total++; /* terminating null */
393 if (!(new_env = HeapAlloc( GetProcessHeap(), 0, total * sizeof(WCHAR) )))
395 FreeEnvironmentStringsW( strings );
402 int len = strlenW(p) + 1;
403 memcpy( p2, p, len * sizeof(WCHAR) );
404 if (!strncmpiW( p, wPath, 5 ))
407 strcpyW( p2 + len, path );
408 p2 += strlenW(path) + 1;
415 strcpyW( p2, wPath );
417 p2 += strlenW(p2) + 1;
420 FreeEnvironmentStringsW( strings );
425 /***********************************************************************
426 * SHELL_TryAppPathW [Internal]
428 * Helper function for SHELL_FindExecutable
429 * @param lpResult - pointer to a buffer of size MAX_PATH
430 * On entry: szName is a filename (probably without path separators).
431 * On exit: if szName found in "App Path", place full path in lpResult, and return true
433 static BOOL SHELL_TryAppPathW( LPCWSTR szName, LPWSTR lpResult, WCHAR **env)
435 static const WCHAR wszKeyAppPaths[] = {'S','o','f','t','w','a','r','e','\\','M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s',
436 '\\','C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\','A','p','p',' ','P','a','t','h','s','\\',0};
437 static const WCHAR wPath[] = {'P','a','t','h',0};
444 if (env) *env = NULL;
445 strcpyW(buffer, wszKeyAppPaths);
446 strcatW(buffer, szName);
447 res = RegOpenKeyExW(HKEY_LOCAL_MACHINE, buffer, 0, KEY_READ, &hkApp);
450 len = MAX_PATH*sizeof(WCHAR);
451 res = RegQueryValueW(hkApp, NULL, lpResult, &len);
457 DWORD count = sizeof(buffer);
458 if (!RegQueryValueExW(hkApp, wPath, NULL, NULL, (LPBYTE)buffer, &count) && buffer[0])
459 *env = SHELL_BuildEnvW( buffer );
463 if (hkApp) RegCloseKey(hkApp);
467 static UINT SHELL_FindExecutableByOperation(LPCWSTR lpOperation, LPWSTR key, LPWSTR filetype, LPWSTR command, LONG commandlen)
469 static const WCHAR wCommand[] = {'\\','c','o','m','m','a','n','d',0};
471 WCHAR verb[MAX_PATH];
473 if (RegOpenKeyExW(HKEY_CLASSES_ROOT, filetype, 0, 0x02000000, &hkeyClass))
474 return SE_ERR_NOASSOC;
475 if (!HCR_GetDefaultVerbW(hkeyClass, lpOperation, verb, sizeof(verb)))
476 return SE_ERR_NOASSOC;
477 RegCloseKey(hkeyClass);
479 /* Looking for ...buffer\shell\<verb>\command */
480 strcatW(filetype, wszShell);
481 strcatW(filetype, verb);
482 strcatW(filetype, wCommand);
484 if (RegQueryValueW(HKEY_CLASSES_ROOT, filetype, command,
485 &commandlen) == ERROR_SUCCESS)
487 commandlen /= sizeof(WCHAR);
488 if (key) strcpyW(key, filetype);
492 LONG paramlen = sizeof(param);
493 static const WCHAR wSpace[] = {' ',0};
495 /* FIXME: it seems all Windows version don't behave the same here.
496 * the doc states that this ddeexec information can be found after
498 * on Win98, it doesn't appear, but I think it does on Win2k
500 /* Get the parameters needed by the application
501 from the associated ddeexec key */
502 tmp = strstrW(filetype, wCommand);
504 strcatW(filetype, wDdeexec);
505 if (RegQueryValueW(HKEY_CLASSES_ROOT, filetype, param,
506 ¶mlen) == ERROR_SUCCESS)
508 paramlen /= sizeof(WCHAR);
509 strcatW(command, wSpace);
510 strcatW(command, param);
511 commandlen += paramlen;
515 command[commandlen] = '\0';
517 return 33; /* FIXME see SHELL_FindExecutable() */
520 return SE_ERR_NOASSOC;
523 /*************************************************************************
524 * SHELL_FindExecutable [Internal]
526 * Utility for code sharing between FindExecutable and ShellExecute
528 * lpFile the name of a file
529 * lpOperation the operation on it (open)
531 * lpResult a buffer, big enough :-(, to store the command to do the
532 * operation on the file
533 * key a buffer, big enough, to get the key name to do actually the
534 * command (it'll be used afterwards for more information
537 UINT SHELL_FindExecutable(LPCWSTR lpPath, LPCWSTR lpFile, LPCWSTR lpOperation,
538 LPWSTR lpResult, int resultLen, LPWSTR key, WCHAR **env, LPITEMIDLIST pidl, LPCWSTR args)
540 static const WCHAR wWindows[] = {'w','i','n','d','o','w','s',0};
541 static const WCHAR wPrograms[] = {'p','r','o','g','r','a','m','s',0};
542 static const WCHAR wExtensions[] = {'e','x','e',' ','p','i','f',' ','b','a','t',' ','c','m','d',' ','c','o','m',0};
543 WCHAR *extension = NULL; /* pointer to file extension */
544 WCHAR filetype[256]; /* registry name for this filetype */
545 LONG filetypelen = sizeof(filetype); /* length of above */
546 WCHAR command[1024]; /* command from registry */
547 WCHAR wBuffer[256]; /* Used to GetProfileString */
548 UINT retval = SE_ERR_NOASSOC;
549 WCHAR *tok; /* token pointer */
550 WCHAR xlpFile[256]; /* result of SearchPath */
551 DWORD attribs; /* file attributes */
553 TRACE("%s\n", debugstr_w(lpFile));
556 return ERROR_INVALID_PARAMETER;
559 lpResult[0] = '\0'; /* Start off with an empty return string */
560 if (key) *key = '\0';
562 /* trap NULL parameters on entry */
565 WARN("(lpFile=%s,lpResult=%s): NULL parameter\n",
566 debugstr_w(lpFile), debugstr_w(lpResult));
567 return ERROR_FILE_NOT_FOUND; /* File not found. Close enough, I guess. */
570 if (SHELL_TryAppPathW( lpFile, lpResult, env ))
572 TRACE("found %s via App Paths\n", debugstr_w(lpResult));
576 if (SearchPathW(lpPath, lpFile, wszExe, sizeof(xlpFile)/sizeof(WCHAR), xlpFile, NULL))
578 TRACE("SearchPathW returned non-zero\n");
580 /* Hey, isn't this value ignored? Why make this call? Shouldn't we return here? --dank*/
583 attribs = GetFileAttributesW(lpFile);
584 if (attribs!=INVALID_FILE_ATTRIBUTES && (attribs&FILE_ATTRIBUTE_DIRECTORY))
586 strcpyW(filetype, wszFolder);
587 filetypelen = 6; /* strlen("Folder") */
591 /* First thing we need is the file's extension */
592 extension = strrchrW(xlpFile, '.'); /* Assume last "." is the one; */
593 /* File->Run in progman uses */
595 TRACE("xlpFile=%s,extension=%s\n", debugstr_w(xlpFile), debugstr_w(extension));
597 if (extension == NULL || extension[1]==0)
599 WARN("Returning SE_ERR_NOASSOC\n");
600 return SE_ERR_NOASSOC;
603 /* Three places to check: */
604 /* 1. win.ini, [windows], programs (NB no leading '.') */
605 /* 2. Registry, HKEY_CLASS_ROOT\<filetype>\shell\open\command */
606 /* 3. win.ini, [extensions], extension (NB no leading '.' */
607 /* All I know of the order is that registry is checked before */
608 /* extensions; however, it'd make sense to check the programs */
609 /* section first, so that's what happens here. */
611 /* See if it's a program - if GetProfileString fails, we skip this
612 * section. Actually, if GetProfileString fails, we've probably
613 * got a lot more to worry about than running a program... */
614 if (GetProfileStringW(wWindows, wPrograms, wExtensions, wBuffer, sizeof(wBuffer)/sizeof(WCHAR)) > 0)
621 while (*p && *p != ' ' && *p != '\t') p++;
625 while (*p == ' ' || *p == '\t') p++;
628 if (strcmpiW(tok, &extension[1]) == 0) /* have to skip the leading "." */
630 strcpyW(lpResult, xlpFile);
631 /* Need to perhaps check that the file has a path
633 TRACE("found %s\n", debugstr_w(lpResult));
636 /* Greater than 32 to indicate success FIXME According to the
637 * docs, I should be returning a handle for the
638 * executable. Does this mean I'm supposed to open the
639 * executable file or something? More RTFM, I guess... */
646 if (RegQueryValueW(HKEY_CLASSES_ROOT, extension, filetype,
647 &filetypelen) == ERROR_SUCCESS)
649 filetypelen /= sizeof(WCHAR);
650 if (filetypelen == sizeof(filetype)/sizeof(WCHAR))
652 filetype[filetypelen] = '\0';
653 TRACE("File type: %s\n", debugstr_w(filetype));
664 /* pass the operation string to SHELL_FindExecutableByOperation() */
665 filetype[filetypelen] = '\0';
666 retval = SHELL_FindExecutableByOperation(lpOperation, key, filetype, command, sizeof(command));
671 SHELL_ArgifyW(lpResult, resultLen, command, xlpFile, pidl, args, &finishedLen);
672 if (finishedLen > resultLen)
673 ERR("Argify buffer not large enough.. truncated\n");
675 /* Remove double quotation marks and command line arguments */
676 if (*lpResult == '"')
679 while (*(p + 1) != '"')
688 /* Truncate on first space, like Windows:
689 * http://support.microsoft.com/?scid=kb%3Ben-us%3B140724
692 while (*p != ' ' && *p != '\0')
698 else /* Check win.ini */
700 static const WCHAR wExtensions[] = {'e','x','t','e','n','s','i','o','n','s',0};
702 /* Toss the leading dot */
704 if (GetProfileStringW(wExtensions, extension, wszEmpty, command, sizeof(command)/sizeof(WCHAR)) > 0)
706 if (strlenW(command) != 0)
708 strcpyW(lpResult, command);
709 tok = strchrW(lpResult, '^'); /* should be ^.extension? */
713 strcatW(lpResult, xlpFile); /* what if no dir in xlpFile? */
714 tok = strchrW(command, '^'); /* see above */
715 if ((tok != NULL) && (strlenW(tok)>5))
717 strcatW(lpResult, &tok[5]);
720 retval = 33; /* FIXME - see above */
725 TRACE("returning %s\n", debugstr_w(lpResult));
729 /******************************************************************
732 * callback for the DDE connection. not really useful
734 static HDDEDATA CALLBACK dde_cb(UINT uType, UINT uFmt, HCONV hConv,
735 HSZ hsz1, HSZ hsz2, HDDEDATA hData,
736 ULONG_PTR dwData1, ULONG_PTR dwData2)
738 TRACE("dde_cb: %04x, %04x, %p, %p, %p, %p, %08lx, %08lx\n",
739 uType, uFmt, hConv, hsz1, hsz2, hData, dwData1, dwData2);
743 /******************************************************************
746 * ShellExecute helper. Used to do an operation with a DDE connection
748 * Handles both the direct connection (try #1), and if it fails,
749 * launching an application and trying (#2) to connect to it
752 static unsigned dde_connect(WCHAR* key, const WCHAR* start, WCHAR* ddeexec,
753 const WCHAR* lpFile, WCHAR *env,
754 LPCWSTR szCommandline, LPITEMIDLIST pidl, SHELL_ExecuteW32 execfunc,
755 LPSHELLEXECUTEINFOW psei, LPSHELLEXECUTEINFOW psei_out)
757 static const WCHAR wApplication[] = {'\\','a','p','p','l','i','c','a','t','i','o','n',0};
758 static const WCHAR wTopic[] = {'\\','t','o','p','i','c',0};
759 WCHAR * endkey = key + strlenW(key);
760 WCHAR app[256], topic[256], ifexec[256], res[256];
761 LONG applen, topiclen, ifexeclen;
766 HSZ hszApp, hszTopic;
769 unsigned ret = SE_ERR_NOASSOC;
770 BOOL unicode = !(GetVersion() & 0x80000000);
772 strcpyW(endkey, wApplication);
773 applen = sizeof(app);
774 if (RegQueryValueW(HKEY_CLASSES_ROOT, key, app, &applen) != ERROR_SUCCESS)
776 WCHAR command[1024], fullpath[MAX_PATH];
777 static const WCHAR wSo[] = { '.','s','o',0 };
778 int sizeSo = sizeof(wSo)/sizeof(WCHAR);
782 /* Get application command from start string and find filename of application */
785 strcpyW(command, start+1);
786 if ((ptr = strchrW(command, '"')))
788 ret = SearchPathW(NULL, command, wszExe, sizeof(fullpath)/sizeof(WCHAR), fullpath, &ptr);
793 for (p=(LPWSTR)start; (space=strchrW(p, ' ')); p=space+1)
795 int idx = space-start;
796 memcpy(command, start, idx*sizeof(WCHAR));
798 if ((ret = SearchPathW(NULL, command, wszExe, sizeof(fullpath)/sizeof(WCHAR), fullpath, &ptr)))
802 ret = SearchPathW(NULL, start, wszExe, sizeof(fullpath)/sizeof(WCHAR), fullpath, &ptr);
807 ERR("Unable to find application path for command %s\n", debugstr_w(start));
808 return ERROR_ACCESS_DENIED;
812 /* Remove extensions (including .so) */
813 ptr = app + strlenW(app) - (sizeSo-1);
814 if (strlenW(app) >= sizeSo &&
818 ptr = strrchrW(app, '.');
823 strcpyW(endkey, wTopic);
824 topiclen = sizeof(topic);
825 if (RegQueryValueW(HKEY_CLASSES_ROOT, key, topic, &topiclen) != ERROR_SUCCESS)
827 static const WCHAR wSystem[] = {'S','y','s','t','e','m',0};
828 strcpyW(topic, wSystem);
833 if (DdeInitializeW(&ddeInst, dde_cb, APPCMD_CLIENTONLY, 0L) != DMLERR_NO_ERROR)
838 if (DdeInitializeA(&ddeInst, dde_cb, APPCMD_CLIENTONLY, 0L) != DMLERR_NO_ERROR)
842 hszApp = DdeCreateStringHandleW(ddeInst, app, CP_WINUNICODE);
843 hszTopic = DdeCreateStringHandleW(ddeInst, topic, CP_WINUNICODE);
845 hConv = DdeConnect(ddeInst, hszApp, hszTopic, NULL);
849 static const WCHAR wIfexec[] = {'\\','i','f','e','x','e','c',0};
850 TRACE("Launching %s\n", debugstr_w(start));
851 ret = execfunc(start, env, TRUE, psei, psei_out);
854 TRACE("Couldn't launch\n");
857 hConv = DdeConnect(ddeInst, hszApp, hszTopic, NULL);
860 TRACE("Couldn't connect. ret=%d\n", ret);
861 DdeUninitialize(ddeInst);
862 SetLastError(ERROR_DDE_FAIL);
863 return 30; /* whatever */
865 strcpyW(endkey, wIfexec);
866 ifexeclen = sizeof(ifexec);
867 if (RegQueryValueW(HKEY_CLASSES_ROOT, key, ifexec, &ifexeclen) == ERROR_SUCCESS)
873 SHELL_ArgifyW(res, sizeof(res)/sizeof(WCHAR), exec, lpFile, pidl, szCommandline, &resultLen);
874 if (resultLen > sizeof(res)/sizeof(WCHAR))
875 ERR("Argify buffer not large enough, truncated\n");
876 TRACE("%s %s => %s\n", debugstr_w(exec), debugstr_w(lpFile), debugstr_w(res));
878 /* It's documented in the KB 330337 that IE has a bug and returns
879 * error DMLERR_NOTPROCESSED on XTYP_EXECUTE request.
882 hDdeData = DdeClientTransaction((LPBYTE)res, (strlenW(res) + 1) * sizeof(WCHAR), hConv, 0L, 0,
883 XTYP_EXECUTE, 30000, &tid);
886 DWORD lenA = WideCharToMultiByte(CP_ACP, 0, res, -1, NULL, 0, NULL, NULL);
887 char *resA = HeapAlloc(GetProcessHeap(), 0, lenA);
888 WideCharToMultiByte(CP_ACP, 0, res, -1, resA, lenA, NULL, NULL);
889 hDdeData = DdeClientTransaction( (LPBYTE)resA, lenA, hConv, 0L, 0,
890 XTYP_EXECUTE, 10000, &tid );
891 HeapFree(GetProcessHeap(), 0, resA);
894 DdeFreeDataHandle(hDdeData);
896 WARN("DdeClientTransaction failed with error %04x\n", DdeGetLastError(ddeInst));
899 DdeDisconnect(hConv);
902 DdeUninitialize(ddeInst);
907 /*************************************************************************
908 * execute_from_key [Internal]
910 static UINT_PTR execute_from_key(LPWSTR key, LPCWSTR lpFile, WCHAR *env, LPCWSTR szCommandline,
911 LPCWSTR executable_name,
912 SHELL_ExecuteW32 execfunc,
913 LPSHELLEXECUTEINFOW psei, LPSHELLEXECUTEINFOW psei_out)
915 static const WCHAR wCommand[] = {'c','o','m','m','a','n','d',0};
916 static const WCHAR wDdeexec[] = {'d','d','e','e','x','e','c',0};
917 WCHAR cmd[256], param[1024], ddeexec[256];
918 LONG cmdlen = sizeof(cmd), ddeexeclen = sizeof(ddeexec);
919 UINT_PTR retval = SE_ERR_NOASSOC;
923 TRACE("%s %s %s %s %s\n", debugstr_w(key), debugstr_w(lpFile), debugstr_w(env),
924 debugstr_w(szCommandline), debugstr_w(executable_name));
929 /* Get the application from the registry */
930 if (RegQueryValueW(HKEY_CLASSES_ROOT, key, cmd, &cmdlen) == ERROR_SUCCESS)
932 TRACE("got cmd: %s\n", debugstr_w(cmd));
934 /* Is there a replace() function anywhere? */
935 cmdlen /= sizeof(WCHAR);
937 SHELL_ArgifyW(param, sizeof(param)/sizeof(WCHAR), cmd, lpFile, psei->lpIDList, szCommandline, &resultLen);
938 if (resultLen > sizeof(param)/sizeof(WCHAR))
939 ERR("Argify buffer not large enough, truncating\n");
942 /* Get the parameters needed by the application
943 from the associated ddeexec key */
944 tmp = strstrW(key, wCommand);
946 strcpyW(tmp, wDdeexec);
948 if (RegQueryValueW(HKEY_CLASSES_ROOT, key, ddeexec, &ddeexeclen) == ERROR_SUCCESS)
950 TRACE("Got ddeexec %s => %s\n", debugstr_w(key), debugstr_w(ddeexec));
951 if (!param[0]) strcpyW(param, executable_name);
952 retval = dde_connect(key, param, ddeexec, lpFile, env, szCommandline, psei->lpIDList, execfunc, psei, psei_out);
956 TRACE("executing: %s\n", debugstr_w(param));
957 retval = execfunc(param, env, FALSE, psei, psei_out);
960 WARN("Nothing appropriate found for %s\n", debugstr_w(key));
965 /*************************************************************************
966 * FindExecutableA [SHELL32.@]
968 HINSTANCE WINAPI FindExecutableA(LPCSTR lpFile, LPCSTR lpDirectory, LPSTR lpResult)
971 WCHAR *wFile = NULL, *wDirectory = NULL;
972 WCHAR wResult[MAX_PATH];
974 if (lpFile) __SHCloneStrAtoW(&wFile, lpFile);
975 if (lpDirectory) __SHCloneStrAtoW(&wDirectory, lpDirectory);
977 retval = FindExecutableW(wFile, wDirectory, wResult);
978 WideCharToMultiByte(CP_ACP, 0, wResult, -1, lpResult, MAX_PATH, NULL, NULL);
980 SHFree( wDirectory );
982 TRACE("returning %s\n", lpResult);
986 /*************************************************************************
987 * FindExecutableW [SHELL32.@]
989 * This function returns the executable associated with the specified file
990 * for the default verb.
993 * lpFile [I] The file to find the association for. This must refer to
994 * an existing file otherwise FindExecutable fails and returns
996 * lpResult [O] Points to a buffer into which the executable path is
997 * copied. This parameter must not be NULL otherwise
998 * FindExecutable() segfaults. The buffer must be of size at
999 * least MAX_PATH characters.
1002 * A value greater than 32 on success, less than or equal to 32 otherwise.
1003 * See the SE_ERR_* constants.
1006 * On Windows XP and 2003, FindExecutable() seems to first convert the
1007 * filename into 8.3 format, thus taking into account only the first three
1008 * characters of the extension, and expects to find an association for those.
1009 * However other Windows versions behave sanely.
1011 HINSTANCE WINAPI FindExecutableW(LPCWSTR lpFile, LPCWSTR lpDirectory, LPWSTR lpResult)
1013 UINT_PTR retval = SE_ERR_NOASSOC;
1014 WCHAR old_dir[1024];
1016 TRACE("File %s, Dir %s\n", debugstr_w(lpFile), debugstr_w(lpDirectory));
1018 lpResult[0] = '\0'; /* Start off with an empty return string */
1020 return (HINSTANCE)SE_ERR_FNF;
1024 GetCurrentDirectoryW(sizeof(old_dir)/sizeof(WCHAR), old_dir);
1025 SetCurrentDirectoryW(lpDirectory);
1028 retval = SHELL_FindExecutable(lpDirectory, lpFile, wszOpen, lpResult, MAX_PATH, NULL, NULL, NULL, NULL);
1030 TRACE("returning %s\n", debugstr_w(lpResult));
1032 SetCurrentDirectoryW(old_dir);
1033 return (HINSTANCE)retval;
1036 /* FIXME: is this already implemented somewhere else? */
1037 static HKEY ShellExecute_GetClassKey( LPSHELLEXECUTEINFOW sei )
1039 LPCWSTR ext = NULL, lpClass = NULL;
1041 DWORD type = 0, sz = 0;
1045 if (sei->fMask & SEE_MASK_CLASSALL)
1046 return sei->hkeyClass;
1048 if (sei->fMask & SEE_MASK_CLASSNAME)
1049 lpClass = sei->lpClass;
1052 ext = PathFindExtensionW( sei->lpFile );
1053 TRACE("ext = %s\n", debugstr_w( ext ) );
1057 r = RegOpenKeyW( HKEY_CLASSES_ROOT, ext, &hkey );
1058 if (r != ERROR_SUCCESS )
1061 r = RegQueryValueExW( hkey, NULL, 0, &type, NULL, &sz );
1062 if ( r == ERROR_SUCCESS && type == REG_SZ )
1064 sz += sizeof (WCHAR);
1065 cls = HeapAlloc( GetProcessHeap(), 0, sz );
1067 RegQueryValueExW( hkey, NULL, 0, &type, (LPBYTE) cls, &sz );
1070 RegCloseKey( hkey );
1074 TRACE("class = %s\n", debugstr_w(lpClass) );
1078 RegOpenKeyW( HKEY_CLASSES_ROOT, lpClass, &hkey );
1080 HeapFree( GetProcessHeap(), 0, cls );
1085 static IDataObject *shellex_get_dataobj( LPSHELLEXECUTEINFOW sei )
1087 LPCITEMIDLIST pidllast = NULL;
1088 IDataObject *dataobj = NULL;
1089 IShellFolder *shf = NULL;
1090 LPITEMIDLIST pidl = NULL;
1093 if (sei->fMask & SEE_MASK_CLASSALL)
1094 pidl = sei->lpIDList;
1097 WCHAR fullpath[MAX_PATH];
1100 r = GetFullPathNameW( sei->lpFile, MAX_PATH, fullpath, NULL );
1104 pidl = ILCreateFromPathW( fullpath );
1107 r = SHBindToParent( pidl, &IID_IShellFolder, (LPVOID*)&shf, &pidllast );
1111 IShellFolder_GetUIObjectOf( shf, NULL, 1, &pidllast,
1112 &IID_IDataObject, NULL, (LPVOID*) &dataobj );
1115 if ( pidl != sei->lpIDList )
1118 IShellFolder_Release( shf );
1122 static HRESULT shellex_run_context_menu_default( IShellExtInit *obj,
1123 LPSHELLEXECUTEINFOW sei )
1125 IContextMenu *cm = NULL;
1126 CMINVOKECOMMANDINFOEX ici;
1133 TRACE("%p %p\n", obj, sei );
1135 r = IShellExtInit_QueryInterface( obj, &IID_IContextMenu, (LPVOID*) &cm );
1139 hmenu = CreateMenu();
1143 /* the number of the last menu added is returned in r */
1144 r = IContextMenu_QueryContextMenu( cm, hmenu, 0, 0x20, 0x7fff, CMF_DEFAULTONLY );
1148 n = GetMenuItemCount( hmenu );
1149 for ( i = 0; i < n; i++ )
1151 memset( &info, 0, sizeof info );
1152 info.cbSize = sizeof info;
1153 info.fMask = MIIM_FTYPE | MIIM_STRING | MIIM_STATE | MIIM_DATA | MIIM_ID;
1154 info.dwTypeData = string;
1155 info.cch = sizeof string;
1157 GetMenuItemInfoW( hmenu, i, TRUE, &info );
1159 TRACE("menu %d %s %08x %08lx %08x %08x\n", i, debugstr_w(string),
1160 info.fState, info.dwItemData, info.fType, info.wID );
1161 if ( ( !sei->lpVerb && (info.fState & MFS_DEFAULT) ) ||
1162 ( sei->lpVerb && !lstrcmpiW( sei->lpVerb, string ) ) )
1173 memset( &ici, 0, sizeof ici );
1174 ici.cbSize = sizeof ici;
1175 ici.fMask = CMIC_MASK_UNICODE;
1176 ici.nShow = sei->nShow;
1177 ici.lpVerb = MAKEINTRESOURCEA( def );
1178 ici.hwnd = sei->hwnd;
1179 ici.lpParametersW = sei->lpParameters;
1181 r = IContextMenu_InvokeCommand( cm, (LPCMINVOKECOMMANDINFO) &ici );
1183 TRACE("invoke command returned %08x\n", r );
1187 DestroyMenu( hmenu );
1189 IContextMenu_Release( cm );
1193 static HRESULT shellex_load_object_and_run( HKEY hkey, LPCGUID guid, LPSHELLEXECUTEINFOW sei )
1195 IDataObject *dataobj = NULL;
1196 IObjectWithSite *ows = NULL;
1197 IShellExtInit *obj = NULL;
1200 TRACE("%p %s %p\n", hkey, debugstr_guid( guid ), sei );
1202 r = CoInitialize( NULL );
1206 r = CoCreateInstance( guid, NULL, CLSCTX_INPROC_SERVER,
1207 &IID_IShellExtInit, (LPVOID*)&obj );
1210 ERR("failed %08x\n", r );
1214 dataobj = shellex_get_dataobj( sei );
1217 ERR("failed to get data object\n");
1221 r = IShellExtInit_Initialize( obj, NULL, dataobj, hkey );
1225 r = IShellExtInit_QueryInterface( obj, &IID_IObjectWithSite, (LPVOID*) &ows );
1229 IObjectWithSite_SetSite( ows, NULL );
1231 r = shellex_run_context_menu_default( obj, sei );
1235 IObjectWithSite_Release( ows );
1237 IDataObject_Release( dataobj );
1239 IShellExtInit_Release( obj );
1245 /*************************************************************************
1246 * ShellExecute_FromContextMenu [Internal]
1248 static LONG ShellExecute_FromContextMenu( LPSHELLEXECUTEINFOW sei )
1250 static const WCHAR szcm[] = { 's','h','e','l','l','e','x','\\',
1251 'C','o','n','t','e','x','t','M','e','n','u','H','a','n','d','l','e','r','s',0 };
1252 HKEY hkey, hkeycm = 0;
1259 TRACE("%s\n", debugstr_w(sei->lpFile) );
1261 hkey = ShellExecute_GetClassKey( sei );
1263 return ERROR_FUNCTION_FAILED;
1265 r = RegOpenKeyW( hkey, szcm, &hkeycm );
1266 if ( r == ERROR_SUCCESS )
1271 r = RegEnumKeyW( hkeycm, i++, szguid, 39 );
1272 if ( r != ERROR_SUCCESS )
1275 hr = CLSIDFromString( szguid, &guid );
1278 /* stop at the first one that succeeds in running */
1279 hr = shellex_load_object_and_run( hkey, &guid, sei );
1280 if ( SUCCEEDED( hr ) )
1284 RegCloseKey( hkeycm );
1287 if ( hkey != sei->hkeyClass )
1288 RegCloseKey( hkey );
1292 /*************************************************************************
1293 * SHELL_execute [Internal]
1295 BOOL SHELL_execute( LPSHELLEXECUTEINFOW sei, SHELL_ExecuteW32 execfunc )
1297 static const WCHAR wQuote[] = {'"',0};
1298 static const WCHAR wSpace[] = {' ',0};
1299 static const WCHAR wWww[] = {'w','w','w',0};
1300 static const WCHAR wFile[] = {'f','i','l','e',0};
1301 static const WCHAR wHttp[] = {'h','t','t','p',':','/','/',0};
1302 static const WCHAR wExplorer[] = {'e','x','p','l','o','r','e','r','.','e','x','e',0};
1303 static const DWORD unsupportedFlags =
1304 SEE_MASK_INVOKEIDLIST | SEE_MASK_ICON | SEE_MASK_HOTKEY |
1305 SEE_MASK_CONNECTNETDRV | SEE_MASK_FLAG_DDEWAIT | SEE_MASK_FLAG_NO_UI |
1306 SEE_MASK_UNICODE | SEE_MASK_ASYNCOK | SEE_MASK_HMONITOR;
1308 WCHAR *wszApplicationName, wszParameters[1024], wszDir[MAX_PATH];
1309 DWORD dwApplicationNameLen = MAX_PATH+2;
1311 SHELLEXECUTEINFOW sei_tmp; /* modifiable copy of SHELLEXECUTEINFO struct */
1312 WCHAR wfileName[MAX_PATH];
1314 WCHAR lpstrProtocol[256];
1316 UINT_PTR retval = SE_ERR_NOASSOC;
1318 WCHAR buffer[MAX_PATH];
1320 BOOL appKnownSingular = FALSE;
1322 /* make a local copy of the LPSHELLEXECUTEINFO structure and work with this from now on */
1323 memcpy(&sei_tmp, sei, sizeof(sei_tmp));
1325 TRACE("mask=0x%08x hwnd=%p verb=%s file=%s parm=%s dir=%s show=0x%08x class=%s\n",
1326 sei_tmp.fMask, sei_tmp.hwnd, debugstr_w(sei_tmp.lpVerb),
1327 debugstr_w(sei_tmp.lpFile), debugstr_w(sei_tmp.lpParameters),
1328 debugstr_w(sei_tmp.lpDirectory), sei_tmp.nShow,
1329 ((sei_tmp.fMask & SEE_MASK_CLASSALL) == SEE_MASK_CLASSNAME) ?
1330 debugstr_w(sei_tmp.lpClass) : "not used");
1332 sei->hProcess = NULL;
1334 /* make copies of all path/command strings */
1335 if (!sei_tmp.lpFile)
1337 wszApplicationName = HeapAlloc(GetProcessHeap(), 0, dwApplicationNameLen*sizeof(WCHAR));
1338 *wszApplicationName = '\0';
1340 else if (*sei_tmp.lpFile == '\"')
1342 DWORD l = strlenW(sei_tmp.lpFile+1);
1343 if(l >= dwApplicationNameLen) dwApplicationNameLen = l+1;
1344 wszApplicationName = HeapAlloc(GetProcessHeap(), 0, dwApplicationNameLen*sizeof(WCHAR));
1345 memcpy(wszApplicationName, sei_tmp.lpFile+1, (l+1)*sizeof(WCHAR));
1346 if (wszApplicationName[l-1] == '\"')
1347 wszApplicationName[l-1] = '\0';
1348 appKnownSingular = TRUE;
1349 TRACE("wszApplicationName=%s\n",debugstr_w(wszApplicationName));
1351 DWORD l = strlenW(sei_tmp.lpFile)+1;
1352 if(l > dwApplicationNameLen) dwApplicationNameLen = l+1;
1353 wszApplicationName = HeapAlloc(GetProcessHeap(), 0, dwApplicationNameLen*sizeof(WCHAR));
1354 memcpy(wszApplicationName, sei_tmp.lpFile, l*sizeof(WCHAR));
1357 if (sei_tmp.lpParameters)
1358 strcpyW(wszParameters, sei_tmp.lpParameters);
1360 *wszParameters = '\0';
1362 if (sei_tmp.lpDirectory)
1363 strcpyW(wszDir, sei_tmp.lpDirectory);
1367 /* adjust string pointers to point to the new buffers */
1368 sei_tmp.lpFile = wszApplicationName;
1369 sei_tmp.lpParameters = wszParameters;
1370 sei_tmp.lpDirectory = wszDir;
1372 if (sei_tmp.fMask & unsupportedFlags)
1374 FIXME("flags ignored: 0x%08x\n", sei_tmp.fMask & unsupportedFlags);
1377 /* process the IDList */
1378 if (sei_tmp.fMask & SEE_MASK_IDLIST)
1380 IShellExecuteHookW* pSEH;
1382 HRESULT hr = SHBindToParent(sei_tmp.lpIDList, &IID_IShellExecuteHookW, (LPVOID*)&pSEH, NULL);
1386 hr = IShellExecuteHookW_Execute(pSEH, &sei_tmp);
1388 IShellExecuteHookW_Release(pSEH);
1391 HeapFree(GetProcessHeap(), 0, wszApplicationName);
1396 SHGetPathFromIDListW(sei_tmp.lpIDList, wszApplicationName);
1397 appKnownSingular = TRUE;
1398 TRACE("-- idlist=%p (%s)\n", sei_tmp.lpIDList, debugstr_w(wszApplicationName));
1401 if ( ERROR_SUCCESS == ShellExecute_FromContextMenu( &sei_tmp ) )
1403 sei->hInstApp = (HINSTANCE) 33;
1404 HeapFree(GetProcessHeap(), 0, wszApplicationName);
1408 if (sei_tmp.fMask & SEE_MASK_CLASSALL)
1410 /* launch a document by fileclass like 'WordPad.Document.1' */
1411 /* the Commandline contains 'c:\Path\wordpad.exe "%1"' */
1412 /* FIXME: szCommandline should not be of a fixed size. Fixed to 1024, MAX_PATH is way too short! */
1413 ULONG cmask=(sei_tmp.fMask & SEE_MASK_CLASSALL);
1415 HCR_GetExecuteCommandW((cmask == SEE_MASK_CLASSKEY) ? sei_tmp.hkeyClass : NULL,
1416 (cmask == SEE_MASK_CLASSNAME) ? sei_tmp.lpClass: NULL,
1418 wszParameters, sizeof(wszParameters)/sizeof(WCHAR));
1420 /* FIXME: get the extension of lpFile, check if it fits to the lpClass */
1421 TRACE("SEE_MASK_CLASSNAME->%s, doc->%s\n", debugstr_w(wszParameters), debugstr_w(wszApplicationName));
1424 done = SHELL_ArgifyW(wcmd, sizeof(wcmd)/sizeof(WCHAR), wszParameters, wszApplicationName, sei_tmp.lpIDList, NULL, &resultLen);
1425 if (!done && wszApplicationName[0])
1427 strcatW(wcmd, wSpace);
1428 strcatW(wcmd, wszApplicationName);
1430 if (resultLen > sizeof(wcmd)/sizeof(WCHAR))
1431 ERR("Argify buffer not large enough... truncating\n");
1432 retval = execfunc(wcmd, NULL, FALSE, &sei_tmp, sei);
1434 HeapFree(GetProcessHeap(), 0, wszApplicationName);
1438 /* Has the IDList not yet been translated? */
1439 if (sei_tmp.fMask & SEE_MASK_IDLIST)
1441 /* last chance to translate IDList: now also allow CLSID paths */
1442 if (SUCCEEDED(SHELL_GetPathFromIDListForExecuteW(sei_tmp.lpIDList, buffer, sizeof(buffer)))) {
1443 if (buffer[0]==':' && buffer[1]==':') {
1444 /* open shell folder for the specified class GUID */
1445 strcpyW(wszParameters, buffer);
1446 strcpyW(wszApplicationName, wExplorer);
1447 appKnownSingular = TRUE;
1449 sei_tmp.fMask &= ~SEE_MASK_INVOKEIDLIST;
1451 WCHAR target[MAX_PATH];
1454 /* Check if we're executing a directory and if so use the
1455 handler for the Folder class */
1456 strcpyW(target, buffer);
1457 attribs = GetFileAttributesW(buffer);
1458 if (attribs != INVALID_FILE_ATTRIBUTES &&
1459 (attribs & FILE_ATTRIBUTE_DIRECTORY) &&
1460 HCR_GetExecuteCommandW(0, wszFolder,
1462 buffer, sizeof(buffer))) {
1463 SHELL_ArgifyW(wszApplicationName, dwApplicationNameLen,
1464 buffer, target, sei_tmp.lpIDList, NULL, &resultLen);
1465 if (resultLen > dwApplicationNameLen)
1466 ERR("Argify buffer not large enough... truncating\n");
1467 appKnownSingular = FALSE;
1469 sei_tmp.fMask &= ~SEE_MASK_INVOKEIDLIST;
1474 /* expand environment strings */
1475 len = ExpandEnvironmentStringsW(sei_tmp.lpFile, NULL, 0);
1479 buf = HeapAlloc(GetProcessHeap(),0,(len+1)*sizeof(WCHAR));
1481 ExpandEnvironmentStringsW(sei_tmp.lpFile, buf, len+1);
1482 HeapFree(GetProcessHeap(), 0, wszApplicationName);
1483 dwApplicationNameLen = len+1;
1484 wszApplicationName = buf;
1485 /* appKnownSingular unmodified */
1487 sei_tmp.lpFile = wszApplicationName;
1490 if (*sei_tmp.lpParameters)
1492 len = ExpandEnvironmentStringsW(sei_tmp.lpParameters, NULL, 0);
1497 buf = HeapAlloc(GetProcessHeap(),0,len*sizeof(WCHAR));
1498 ExpandEnvironmentStringsW(sei_tmp.lpParameters, buf, len);
1500 ERR("Parameters exceeds buffer size (%i > 1024)\n",len);
1501 lstrcpynW(wszParameters, buf, min(1024,len));
1502 HeapFree(GetProcessHeap(),0,buf);
1506 if (*sei_tmp.lpDirectory)
1508 len = ExpandEnvironmentStringsW(sei_tmp.lpDirectory, NULL, 0);
1513 buf = HeapAlloc(GetProcessHeap(),0,len*sizeof(WCHAR));
1514 ExpandEnvironmentStringsW(sei_tmp.lpDirectory, buf, len);
1516 ERR("Directory exceeds buffer size (%i > 1024)\n",len);
1517 lstrcpynW(wszDir, buf, min(1024,len));
1518 HeapFree(GetProcessHeap(),0,buf);
1522 /* Else, try to execute the filename */
1523 TRACE("execute:%s,%s,%s\n", debugstr_w(wszApplicationName), debugstr_w(wszParameters), debugstr_w(wszDir));
1525 /* separate out command line arguments from executable file name */
1526 if (!*sei_tmp.lpParameters && !appKnownSingular) {
1527 /* If the executable path is quoted, handle the rest of the command line as parameters. */
1528 if (sei_tmp.lpFile[0] == '"') {
1529 LPWSTR src = wszApplicationName/*sei_tmp.lpFile*/ + 1;
1530 LPWSTR dst = wfileName;
1533 /* copy the unquoted executable path to 'wfileName' */
1534 while(*src && *src!='"')
1542 while(isspace(*src))
1547 /* copy the parameter string to 'wszParameters' */
1548 strcpyW(wszParameters, src);
1550 /* terminate previous command string after the quote character */
1555 /* If the executable name is not quoted, we have to use this search loop here,
1556 that in CreateProcess() is not sufficient because it does not handle shell links. */
1557 WCHAR buffer[MAX_PATH], xlpFile[MAX_PATH];
1560 LPWSTR beg = wszApplicationName/*sei_tmp.lpFile*/;
1561 for(s=beg; (space=strchrW(s, ' ')); s=space+1) {
1562 int idx = space-sei_tmp.lpFile;
1563 memcpy(buffer, sei_tmp.lpFile, idx * sizeof(WCHAR));
1566 /*FIXME This finds directory paths if the targeted file name contains spaces. */
1567 if (SearchPathW(*sei_tmp.lpDirectory? sei_tmp.lpDirectory: NULL, buffer, wszExe, sizeof(xlpFile), xlpFile, NULL))
1569 /* separate out command from parameter string */
1570 LPCWSTR p = space + 1;
1575 strcpyW(wszParameters, p);
1582 strcpyW(wfileName, sei_tmp.lpFile);
1585 strcpyW(wfileName, sei_tmp.lpFile);
1589 strcpyW(wcmd, wszApplicationName);
1590 if (sei_tmp.lpParameters[0]) {
1591 strcatW(wcmd, wSpace);
1592 strcatW(wcmd, wszParameters);
1595 retval = execfunc(wcmd, NULL, FALSE, &sei_tmp, sei);
1597 HeapFree(GetProcessHeap(), 0, wszApplicationName);
1601 /* Else, try to find the executable */
1603 retval = SHELL_FindExecutable(sei_tmp.lpDirectory, lpFile, sei_tmp.lpVerb, wcmd, 1024, lpstrProtocol, &env, sei_tmp.lpIDList, sei_tmp.lpParameters);
1604 if (retval > 32) /* Found */
1606 WCHAR wszQuotedCmd[MAX_PATH+2];
1607 /* Must quote to handle case where cmd contains spaces,
1608 * else security hole if malicious user creates executable file "C:\\Program"
1610 strcpyW(wszQuotedCmd, wQuote);
1611 strcatW(wszQuotedCmd, wcmd);
1612 strcatW(wszQuotedCmd, wQuote);
1613 if (wszParameters[0]) {
1614 strcatW(wszQuotedCmd, wSpace);
1615 strcatW(wszQuotedCmd, wszParameters);
1617 TRACE("%s/%s => %s/%s\n", debugstr_w(wszApplicationName), debugstr_w(sei_tmp.lpVerb), debugstr_w(wszQuotedCmd), debugstr_w(lpstrProtocol));
1619 retval = execute_from_key(lpstrProtocol, wszApplicationName, env, sei_tmp.lpParameters, wcmd, execfunc, &sei_tmp, sei);
1621 retval = execfunc(wszQuotedCmd, env, FALSE, &sei_tmp, sei);
1622 HeapFree( GetProcessHeap(), 0, env );
1624 else if (PathIsURLW(lpFile)) /* File not found, check for URL */
1626 static const WCHAR wShell[] = {'\\','s','h','e','l','l','\\',0};
1627 static const WCHAR wCommand[] = {'\\','c','o','m','m','a','n','d',0};
1631 lpstrRes = strchrW(lpFile, ':');
1633 iSize = lpstrRes - lpFile;
1635 iSize = strlenW(lpFile);
1637 TRACE("Got URL: %s\n", debugstr_w(lpFile));
1638 /* Looking for ...protocol\shell\lpOperation\command */
1639 memcpy(lpstrProtocol, lpFile, iSize*sizeof(WCHAR));
1640 lpstrProtocol[iSize] = '\0';
1641 strcatW(lpstrProtocol, wShell);
1642 strcatW(lpstrProtocol, sei_tmp.lpVerb? sei_tmp.lpVerb: wszOpen);
1643 strcatW(lpstrProtocol, wCommand);
1645 /* Remove File Protocol from lpFile */
1646 /* In the case file://path/file */
1647 if (!strncmpiW(lpFile, wFile, iSize))
1650 while (*lpFile == ':') lpFile++;
1652 retval = execute_from_key(lpstrProtocol, lpFile, NULL, sei_tmp.lpParameters, wcmd, execfunc, &sei_tmp, sei);
1654 /* Check if file specified is in the form www.??????.*** */
1655 else if (!strncmpiW(lpFile, wWww, 3))
1657 /* if so, append lpFile http:// and call ShellExecute */
1658 WCHAR lpstrTmpFile[256];
1659 strcpyW(lpstrTmpFile, wHttp);
1660 strcatW(lpstrTmpFile, lpFile);
1661 retval = (UINT_PTR)ShellExecuteW(sei_tmp.hwnd, sei_tmp.lpVerb, lpstrTmpFile, NULL, NULL, 0);
1664 TRACE("retval %lu\n", retval);
1666 HeapFree(GetProcessHeap(), 0, wszApplicationName);
1668 sei->hInstApp = (HINSTANCE)(retval > 32 ? 33 : retval);
1672 /*************************************************************************
1673 * ShellExecuteA [SHELL32.290]
1675 HINSTANCE WINAPI ShellExecuteA(HWND hWnd, LPCSTR lpOperation,LPCSTR lpFile,
1676 LPCSTR lpParameters,LPCSTR lpDirectory, INT iShowCmd)
1678 SHELLEXECUTEINFOA sei;
1680 TRACE("%p,%s,%s,%s,%s,%d\n",
1681 hWnd, debugstr_a(lpOperation), debugstr_a(lpFile),
1682 debugstr_a(lpParameters), debugstr_a(lpDirectory), iShowCmd);
1684 sei.cbSize = sizeof(sei);
1687 sei.lpVerb = lpOperation;
1688 sei.lpFile = lpFile;
1689 sei.lpParameters = lpParameters;
1690 sei.lpDirectory = lpDirectory;
1691 sei.nShow = iShowCmd;
1698 ShellExecuteExA (&sei);
1699 return sei.hInstApp;
1702 /*************************************************************************
1703 * ShellExecuteExA [SHELL32.292]
1706 BOOL WINAPI ShellExecuteExA (LPSHELLEXECUTEINFOA sei)
1708 SHELLEXECUTEINFOW seiW;
1710 WCHAR *wVerb = NULL, *wFile = NULL, *wParameters = NULL, *wDirectory = NULL, *wClass = NULL;
1714 memcpy(&seiW, sei, sizeof(SHELLEXECUTEINFOW));
1717 seiW.lpVerb = __SHCloneStrAtoW(&wVerb, sei->lpVerb);
1720 seiW.lpFile = __SHCloneStrAtoW(&wFile, sei->lpFile);
1722 if (sei->lpParameters)
1723 seiW.lpParameters = __SHCloneStrAtoW(&wParameters, sei->lpParameters);
1725 if (sei->lpDirectory)
1726 seiW.lpDirectory = __SHCloneStrAtoW(&wDirectory, sei->lpDirectory);
1728 if ((sei->fMask & SEE_MASK_CLASSALL) == SEE_MASK_CLASSNAME && sei->lpClass)
1729 seiW.lpClass = __SHCloneStrAtoW(&wClass, sei->lpClass);
1731 seiW.lpClass = NULL;
1733 ret = SHELL_execute( &seiW, SHELL_ExecuteW );
1735 sei->hInstApp = seiW.hInstApp;
1737 if (sei->fMask & SEE_MASK_NOCLOSEPROCESS)
1738 sei->hProcess = seiW.hProcess;
1742 SHFree(wParameters);
1749 /*************************************************************************
1750 * ShellExecuteExW [SHELL32.293]
1753 BOOL WINAPI ShellExecuteExW (LPSHELLEXECUTEINFOW sei)
1755 return SHELL_execute( sei, SHELL_ExecuteW );
1758 /*************************************************************************
1759 * ShellExecuteW [SHELL32.294]
1761 * WINSHELLAPI HINSTANCE APIENTRY ShellExecuteW(HWND hwnd, LPCWSTR lpOperation,
1762 * LPCWSTR lpFile, LPCWSTR lpParameters, LPCWSTR lpDirectory, INT nShowCmd);
1764 HINSTANCE WINAPI ShellExecuteW(HWND hwnd, LPCWSTR lpOperation, LPCWSTR lpFile,
1765 LPCWSTR lpParameters, LPCWSTR lpDirectory, INT nShowCmd)
1767 SHELLEXECUTEINFOW sei;
1770 sei.cbSize = sizeof(sei);
1773 sei.lpVerb = lpOperation;
1774 sei.lpFile = lpFile;
1775 sei.lpParameters = lpParameters;
1776 sei.lpDirectory = lpDirectory;
1777 sei.nShow = nShowCmd;
1784 SHELL_execute( &sei, SHELL_ExecuteW );
1785 return sei.hInstApp;
1788 /*************************************************************************
1789 * OpenAs_RunDLLA [SHELL32.@]
1791 void WINAPI OpenAs_RunDLLA(HWND hwnd, HINSTANCE hinst, LPCSTR cmdline, int cmdshow)
1793 FIXME("%p, %p, %s, %d\n", hwnd, hinst, debugstr_a(cmdline), cmdshow);
1796 /*************************************************************************
1797 * OpenAs_RunDLLW [SHELL32.@]
1799 void WINAPI OpenAs_RunDLLW(HWND hwnd, HINSTANCE hinst, LPCWSTR cmdline, int cmdshow)
1801 FIXME("%p, %p, %s, %d\n", hwnd, hinst, debugstr_w(cmdline), cmdshow);