Keep track of per-column information inside the listview.
[wine] / dlls / shell32 / shlexec.c
1 /*
2  *                              Shell Library Functions
3  *
4  * Copyright 1998 Marcus Meissner
5  * Copyright 2002 Eric Pouech
6  *
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.
11  *
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.
16  *
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  */
21
22 #include "config.h"
23
24 #include <stdlib.h>
25 #include <string.h>
26 #include <stdio.h>
27 #ifdef HAVE_UNISTD_H
28 # include <unistd.h>
29 #endif
30 #include <ctype.h>
31 #include <assert.h>
32
33 #include "windef.h"
34 #include "winerror.h"
35 #include "winreg.h"
36 #include "wownt32.h"
37 #include "heap.h"
38 #include "shellapi.h"
39 #include "shlobj.h"
40 #include "shlwapi.h"
41 #include "ddeml.h"
42
43 #include "wine/winbase16.h"
44 #include "shell32_main.h"
45 #include "undocshell.h"
46
47 #include "wine/debug.h"
48
49 WINE_DEFAULT_DEBUG_CHANNEL(exec);
50
51 /***********************************************************************
52  * this function is supposed to expand the escape sequences found in the registry
53  * some diving reported that the following were used:
54  * + %1, %2...  seem to report to parameter of index N in ShellExecute pmts
55  *      %1 file
56  *      %2 printer
57  *      %3 driver
58  *      %4 port
59  * %I adress of a global item ID (explorer switch /idlist)
60  * %L seems to be %1 as long filename followed by the 8+3 variation
61  * %S ???
62  * %* all following parameters (see batfile)
63  */
64 static BOOL argify(char* res, int len, const char* fmt, const char* lpFile)
65 {
66     char        xlpFile[1024];
67     BOOL        done = FALSE;
68
69     while (*fmt)
70     {
71         if (*fmt == '%')
72         {
73             switch (*++fmt)
74             {
75             case '\0':
76             case '%':
77                 *res++ = '%';
78                 break;
79             case '1':
80             case '*':
81                 if (!done || (*fmt == '1'))
82                 {
83                     if (SearchPathA(NULL, lpFile, ".exe", sizeof(xlpFile), xlpFile, NULL))
84                     {
85                         strcpy(res, xlpFile);
86                         res += strlen(xlpFile);
87                     }
88                     else
89                     {
90                         strcpy(res, lpFile);
91                         res += strlen(lpFile);
92                     }
93                 }
94                 break;
95             default: FIXME("Unknown escape sequence %%%c\n", *fmt);
96             }
97             fmt++;
98             done = TRUE;
99         }
100         else
101             *res++ = *fmt++;
102     }
103     *res = '\0';
104     return done;
105 }
106
107 /*************************************************************************
108  *      SHELL_ExecuteA [Internal]
109  *
110  */
111 static HINSTANCE SHELL_ExecuteA(char *lpCmd, LPSHELLEXECUTEINFOA sei, BOOL is32, BOOL shWait)
112 {
113     STARTUPINFOA  startup;
114     PROCESS_INFORMATION info;
115     HINSTANCE retval = 31;
116
117     TRACE("Execute %s from directory %s\n", lpCmd, sei->lpDirectory);
118     ZeroMemory(&startup,sizeof(STARTUPINFOA));
119     startup.cb = sizeof(STARTUPINFOA);
120     startup.dwFlags = STARTF_USESHOWWINDOW;
121     startup.wShowWindow = sei->nShow;
122     if (is32)
123     {
124         if (CreateProcessA(NULL, lpCmd, NULL, NULL, FALSE, 0,
125                         NULL, sei->lpDirectory, &startup, &info))
126         {
127             /* Give 30 seconds to the app to come up, if desired. Probably only needed
128                when starting app immediately before making a DDE connection. */
129             if (shWait)
130                 if (WaitForInputIdle( info.hProcess, 30000 ) == -1)
131                     WARN("WaitForInputIdle failed: Error %ld\n", GetLastError() );
132             retval = (HINSTANCE)33;
133             if(sei->fMask & SEE_MASK_NOCLOSEPROCESS)
134                 sei->hProcess = info.hProcess;
135             else
136                 CloseHandle( info.hProcess );
137             CloseHandle( info.hThread );
138         }
139         else if ((retval = GetLastError()) >= (HINSTANCE)32)
140         {
141             FIXME("Strange error set by CreateProcess: %d\n", retval);
142             retval = (HINSTANCE)ERROR_BAD_FORMAT;
143         }
144     }
145     else
146         retval = WinExec16(lpCmd, sei->nShow);
147
148     sei->hInstApp = retval;
149     return retval;
150 }
151
152 /*************************************************************************
153  *      SHELL_FindExecutable [Internal]
154  *
155  * Utility for code sharing between FindExecutable and ShellExecute
156  * in:
157  *      lpFile the name of a file
158  *      lpOperation the operation on it (open)
159  * out:
160  *      lpResult a buffer, big enough :-(, to store the command to do the
161  *              operation on the file
162  *      key a buffer, big enough, to get the key name to do actually the
163  *              command (it'll be used afterwards for more information
164  *              on the operation)
165  */
166 static HINSTANCE SHELL_FindExecutable(LPCSTR lpPath, LPCSTR lpFile, LPCSTR lpOperation,
167                                       LPSTR lpResult, LPSTR key)
168 {
169     char *extension = NULL; /* pointer to file extension */
170     char tmpext[5];         /* local copy to mung as we please */
171     char filetype[256];     /* registry name for this filetype */
172     LONG filetypelen = 256; /* length of above */
173     char command[256];      /* command from registry */
174     LONG commandlen = 256;  /* This is the most DOS can handle :) */
175     char buffer[256];       /* Used to GetProfileString */
176     HINSTANCE retval = 31;  /* default - 'No association was found' */
177     char *tok;              /* token pointer */
178     int i;                  /* random counter */
179     char xlpFile[256] = ""; /* result of SearchPath */
180
181     TRACE("%s\n", (lpFile != NULL) ? lpFile : "-");
182
183     lpResult[0] = '\0'; /* Start off with an empty return string */
184
185     /* trap NULL parameters on entry */
186     if ((lpFile == NULL) || (lpResult == NULL) || (lpOperation == NULL))
187     {
188         WARN("(lpFile=%s,lpResult=%s,lpOperation=%s): NULL parameter\n",
189              lpFile, lpOperation, lpResult);
190         return 2; /* File not found. Close enough, I guess. */
191     }
192
193     if (SearchPathA(lpPath, lpFile, ".exe", sizeof(xlpFile), xlpFile, NULL))
194     {
195         TRACE("SearchPathA returned non-zero\n");
196         lpFile = xlpFile;
197     }
198
199     /* First thing we need is the file's extension */
200     extension = strrchr(xlpFile, '.'); /* Assume last "." is the one; */
201                                        /* File->Run in progman uses */
202                                        /* .\FILE.EXE :( */
203     TRACE("xlpFile=%s,extension=%s\n", xlpFile, extension);
204
205     if ((extension == NULL) || (extension == &xlpFile[strlen(xlpFile)]))
206     {
207         WARN("Returning 31 - No association\n");
208         return 31; /* no association */
209     }
210
211     /* Make local copy & lowercase it for reg & 'programs=' lookup */
212     lstrcpynA(tmpext, extension, 5);
213     CharLowerA(tmpext);
214     TRACE("%s file\n", tmpext);
215
216     /* Three places to check: */
217     /* 1. win.ini, [windows], programs (NB no leading '.') */
218     /* 2. Registry, HKEY_CLASS_ROOT\<filetype>\shell\open\command */
219     /* 3. win.ini, [extensions], extension (NB no leading '.' */
220     /* All I know of the order is that registry is checked before */
221     /* extensions; however, it'd make sense to check the programs */
222     /* section first, so that's what happens here. */
223
224     if (key) *key = '\0';
225
226     /* See if it's a program - if GetProfileString fails, we skip this
227      * section. Actually, if GetProfileString fails, we've probably
228      * got a lot more to worry about than running a program... */
229     if (GetProfileStringA("windows", "programs", "exe pif bat com",
230                           buffer, sizeof(buffer)) > 0)
231     {
232         for (i = 0;i<strlen(buffer); i++) buffer[i] = tolower(buffer[i]);
233
234         tok = strtok(buffer, " \t"); /* ? */
235         while (tok!= NULL)
236         {
237             if (strcmp(tok, &tmpext[1]) == 0) /* have to skip the leading "." */
238             {
239                 strcpy(lpResult, xlpFile);
240                 /* Need to perhaps check that the file has a path
241                  * attached */
242                 TRACE("found %s\n", lpResult);
243                 return 33;
244
245                 /* Greater than 32 to indicate success FIXME According to the
246                  * docs, I should be returning a handle for the
247                  * executable. Does this mean I'm supposed to open the
248                  * executable file or something? More RTFM, I guess... */
249             }
250             tok = strtok(NULL, " \t");
251         }
252     }
253
254     /* Check registry */
255     if (RegQueryValueA(HKEY_CLASSES_ROOT, tmpext, filetype,
256                        &filetypelen) == ERROR_SUCCESS)
257     {
258         filetype[filetypelen] = '\0';
259         TRACE("File type: %s\n", filetype);
260
261         /* Looking for ...buffer\shell\lpOperation\command */
262         strcat(filetype, "\\shell\\");
263         strcat(filetype, lpOperation);
264         strcat(filetype, "\\command");
265
266         if (RegQueryValueA(HKEY_CLASSES_ROOT, filetype, command,
267                            &commandlen) == ERROR_SUCCESS)
268         {
269             if (key) strcpy(key, filetype);
270 #if 0
271             LPSTR tmp;
272             char param[256];
273             LONG paramlen = 256;
274
275             /* FIXME: it seems all Windows version don't behave the same here.
276              * the doc states that this ddeexec information can be found after
277              * the exec names.
278              * on Win98, it doesn't appear, but I think it does on Win2k
279              */
280             /* Get the parameters needed by the application
281                from the associated ddeexec key */
282             tmp = strstr(filetype, "command");
283             tmp[0] = '\0';
284             strcat(filetype, "ddeexec");
285
286             if (RegQueryValueA(HKEY_CLASSES_ROOT, filetype, param, &paramlen) == ERROR_SUCCESS)
287             {
288                 strcat(command, " ");
289                 strcat(command, param);
290                 commandlen += paramlen;
291             }
292 #endif
293             command[commandlen] = '\0';
294             argify(lpResult, sizeof(lpResult), command, xlpFile);
295             retval = 33; /* FIXME see above */
296         }
297     }
298     else /* Check win.ini */
299     {
300         /* Toss the leading dot */
301         extension++;
302         if (GetProfileStringA("extensions", extension, "", command,
303                               sizeof(command)) > 0)
304         {
305             if (strlen(command) != 0)
306             {
307                 strcpy(lpResult, command);
308                 tok = strstr(lpResult, "^"); /* should be ^.extension? */
309                 if (tok != NULL)
310                 {
311                     tok[0] = '\0';
312                     strcat(lpResult, xlpFile); /* what if no dir in xlpFile? */
313                     tok = strstr(command, "^"); /* see above */
314                     if ((tok != NULL) && (strlen(tok)>5))
315                     {
316                         strcat(lpResult, &tok[5]);
317                     }
318                 }
319                 retval = 33; /* FIXME - see above */
320             }
321         }
322     }
323
324     TRACE("returning %s\n", lpResult);
325     return retval;
326 }
327
328 /******************************************************************
329  *              dde_cb
330  *
331  * callback for the DDE connection. not really usefull
332  */
333 static HDDEDATA CALLBACK dde_cb(UINT uType, UINT uFmt, HCONV hConv,
334                                 HSZ hsz1, HSZ hsz2,
335                                 HDDEDATA hData, DWORD dwData1, DWORD dwData2)
336 {
337     return (HDDEDATA)0;
338 }
339
340 /******************************************************************
341  *              dde_connect
342  *
343  * ShellExecute helper. Used to do an operation with a DDE connection
344  *
345  * Handles both the direct connection (try #1), and if it fails,
346  * launching an application and trying (#2) to connect to it
347  *
348  */
349 static unsigned dde_connect(char* key, char* start, char* ddeexec,
350                             const char* lpFile,
351                             LPSHELLEXECUTEINFOA sei, BOOL is32)
352 {
353     char*       endkey = key + strlen(key);
354     char        app[256], topic[256], ifexec[256], res[256];
355     LONG        applen, topiclen, ifexeclen;
356     char*       exec;
357     DWORD       ddeInst = 0;
358     DWORD       tid;
359     HSZ         hszApp, hszTopic;
360     HCONV       hConv;
361     unsigned    ret = 31;
362
363     strcpy(endkey, "\\application");
364     applen = sizeof(app);
365     if (RegQueryValueA(HKEY_CLASSES_ROOT, key, app, &applen) != ERROR_SUCCESS)
366     {
367         FIXME("default app name NIY %s\n", key);
368         return 2;
369     }
370
371     strcpy(endkey, "\\topic");
372     topiclen = sizeof(topic);
373     if (RegQueryValueA(HKEY_CLASSES_ROOT, key, topic, &topiclen) != ERROR_SUCCESS)
374     {
375         strcpy(topic, "System");
376     }
377
378     if (DdeInitializeA(&ddeInst, dde_cb, APPCMD_CLIENTONLY, 0L) != DMLERR_NO_ERROR)
379     {
380         return 2;
381     }
382
383     hszApp = DdeCreateStringHandleA(ddeInst, app, CP_WINANSI);
384     hszTopic = DdeCreateStringHandleA(ddeInst, topic, CP_WINANSI);
385
386     hConv = DdeConnect(ddeInst, hszApp, hszTopic, NULL);
387     exec = ddeexec;
388     if (!hConv)
389     {
390         TRACE("Launching '%s'\n", start);
391         ret = SHELL_ExecuteA(start, sei, is32, TRUE);
392         if (ret < 32)
393         {
394             TRACE("Couldn't launch\n");
395             goto error;
396         }
397         hConv = DdeConnect(ddeInst, hszApp, hszTopic, NULL);
398         if (!hConv)
399         {
400             TRACE("Couldn't connect. ret=%d\n", ret);
401             ret = 30; /* whatever */
402             goto error;
403         }
404         strcpy(endkey, "\\ifexec");
405         ifexeclen = sizeof(ifexec);
406         if (RegQueryValueA(HKEY_CLASSES_ROOT, key, ifexec, &ifexeclen) == ERROR_SUCCESS)
407         {
408             exec = ifexec;
409         }
410     }
411
412     argify(res, sizeof(res), exec, lpFile);
413     TRACE("%s %s => %s\n", exec, lpFile, res);
414
415     ret = (DdeClientTransaction(res, strlen(res) + 1, hConv, 0L, 0,
416                                 XTYP_EXECUTE, 10000, &tid) != DMLERR_NO_ERROR) ? 31 : 33;
417     DdeDisconnect(hConv);
418  error:
419     DdeUninitialize(ddeInst);
420     return ret;
421 }
422
423 /*************************************************************************
424  *      execute_from_key [Internal]
425  */
426 static HINSTANCE execute_from_key(LPSTR key, LPCSTR lpFile, LPSHELLEXECUTEINFOA sei, BOOL is32)
427 {
428     char cmd[1024] = "";
429     LONG cmdlen = sizeof(cmd);
430     HINSTANCE retval = 31;
431
432     /* Get the application for the registry */
433     if (RegQueryValueA(HKEY_CLASSES_ROOT, key, cmd, &cmdlen) == ERROR_SUCCESS)
434     {
435         LPSTR tmp;
436         char param[256] = "";
437         LONG paramlen = 256;
438
439         /* Get the parameters needed by the application
440            from the associated ddeexec key */
441         tmp = strstr(key, "command");
442         assert(tmp);
443         strcpy(tmp, "ddeexec");
444
445         if (RegQueryValueA(HKEY_CLASSES_ROOT, key, param, &paramlen) == ERROR_SUCCESS)
446         {
447             TRACE("Got ddeexec %s => %s\n", key, param);
448             retval = dde_connect(key, cmd, param, lpFile, sei, is32);
449         }
450         else
451         {
452             /* Is there a replace() function anywhere? */
453             cmd[cmdlen] = '\0';
454             argify(param, sizeof(param), cmd, lpFile);
455             retval = SHELL_ExecuteA(param, sei, is32, FALSE);
456         }
457     }
458     else TRACE("ooch\n");
459
460     return retval;
461 }
462
463 /*************************************************************************
464  * FindExecutableA                      [SHELL32.@]
465  */
466 HINSTANCE WINAPI FindExecutableA(LPCSTR lpFile, LPCSTR lpDirectory, LPSTR lpResult)
467 {
468     HINSTANCE retval = 31;    /* default - 'No association was found' */
469     char old_dir[1024];
470
471     TRACE("File %s, Dir %s\n",
472           (lpFile != NULL ? lpFile : "-"), (lpDirectory != NULL ? lpDirectory : "-"));
473
474     lpResult[0] = '\0'; /* Start off with an empty return string */
475
476     /* trap NULL parameters on entry */
477     if ((lpFile == NULL) || (lpResult == NULL))
478     {
479         /* FIXME - should throw a warning, perhaps! */
480         return 2; /* File not found. Close enough, I guess. */
481     }
482
483     if (lpDirectory)
484     {
485         GetCurrentDirectoryA(sizeof(old_dir), old_dir);
486         SetCurrentDirectoryA(lpDirectory);
487     }
488
489     retval = SHELL_FindExecutable(lpDirectory, lpFile, "open", lpResult, NULL);
490
491     TRACE("returning %s\n", lpResult);
492     if (lpDirectory)
493         SetCurrentDirectoryA(old_dir);
494     return retval;
495 }
496
497 /*************************************************************************
498  * FindExecutableW                      [SHELL32.@]
499  */
500 HINSTANCE WINAPI FindExecutableW(LPCWSTR lpFile, LPCWSTR lpDirectory, LPWSTR lpResult)
501 {
502     FIXME("(%p,%p,%p): stub\n", lpFile, lpDirectory, lpResult);
503     return 31;    /* default - 'No association was found' */
504 }
505
506 /*************************************************************************
507  *      ShellExecuteExA32 [Internal]
508  */
509 BOOL WINAPI ShellExecuteExA32 (LPSHELLEXECUTEINFOA sei, BOOL is32)
510 {
511     CHAR szApplicationName[MAX_PATH],szCommandline[MAX_PATH],szPidl[20],fileName[MAX_PATH];
512     LPSTR pos;
513     int gap, len;
514     char lpstrProtocol[256];
515     LPCSTR lpFile,lpOperation;
516     HINSTANCE retval = 31;
517     char cmd[1024];
518     BOOL done;
519
520     TRACE("mask=0x%08lx hwnd=0x%04x verb=%s file=%s parm=%s dir=%s show=0x%08x class=%s\n",
521             sei->fMask, sei->hwnd, debugstr_a(sei->lpVerb),
522             debugstr_a(sei->lpFile), debugstr_a(sei->lpParameters),
523             debugstr_a(sei->lpDirectory), sei->nShow,
524             (sei->fMask & SEE_MASK_CLASSNAME) ? debugstr_a(sei->lpClass) : "not used");
525
526     sei->hProcess = (HANDLE)NULL;
527     ZeroMemory(szApplicationName,MAX_PATH);
528     if (sei->lpFile)
529         strcpy(szApplicationName, sei->lpFile);
530
531     ZeroMemory(szCommandline,MAX_PATH);
532     if (sei->lpParameters)
533         strcpy(szCommandline, sei->lpParameters);
534
535     if (sei->fMask & ((SEE_MASK_CLASSKEY & ~SEE_MASK_CLASSNAME) |
536         SEE_MASK_INVOKEIDLIST | SEE_MASK_ICON | SEE_MASK_HOTKEY |
537         SEE_MASK_CONNECTNETDRV | SEE_MASK_FLAG_DDEWAIT |
538         SEE_MASK_DOENVSUBST | SEE_MASK_FLAG_NO_UI | SEE_MASK_UNICODE |
539         SEE_MASK_NO_CONSOLE | SEE_MASK_ASYNCOK | SEE_MASK_HMONITOR ))
540     {
541         FIXME("flags ignored: 0x%08lx\n", sei->fMask);
542     }
543
544     /* process the IDList */
545     if ( (sei->fMask & SEE_MASK_INVOKEIDLIST) == SEE_MASK_INVOKEIDLIST) /*0x0c*/
546     {
547         SHGetPathFromIDListA (sei->lpIDList,szApplicationName);
548         TRACE("-- idlist=%p (%s)\n", sei->lpIDList, szApplicationName);
549     }
550     else
551     {
552         if (sei->fMask & SEE_MASK_IDLIST )
553         {
554             pos = strstr(szCommandline, "%I");
555             if (pos)
556             {
557                 LPVOID pv;
558                 HGLOBAL hmem = SHAllocShared ( sei->lpIDList, ILGetSize(sei->lpIDList), 0);
559                 pv = SHLockShared(hmem,0);
560                 sprintf(szPidl,":%p",pv );
561                 SHUnlockShared(pv);
562
563                 gap = strlen(szPidl);
564                 len = strlen(pos)-2;
565                 memmove(pos+gap,pos+2,len);
566                 memcpy(pos,szPidl,gap);
567             }
568         }
569     }
570
571     if (sei->fMask & SEE_MASK_CLASSNAME)
572     {
573         /* launch a document by fileclass like 'WordPad.Document.1' */
574         /* the Commandline contains 'c:\Path\wordpad.exe "%1"' */
575         /* FIXME: szCommandline should not be of a fixed size. Plus MAX_PATH is way too short! */
576         HCR_GetExecuteCommand(sei->lpClass, (sei->lpVerb) ? sei->lpVerb : "open", szCommandline, sizeof(szCommandline));
577         /* FIXME: get the extension of lpFile, check if it fits to the lpClass */
578         TRACE("SEE_MASK_CLASSNAME->'%s', doc->'%s'\n", szCommandline, szApplicationName);
579
580         cmd[0] = '\0';
581         done = argify(cmd, sizeof(cmd), szCommandline, szApplicationName);
582         if (!done && szApplicationName[0])
583         {
584             strcat(cmd, " ");
585             strcat(cmd, szApplicationName);
586         }
587         retval = SHELL_ExecuteA(cmd, sei, is32, FALSE);
588         if (retval > 32)
589             return TRUE;
590         else
591             return FALSE;
592     }
593
594     /* We set the default to open, and that should generally work.
595        But that is not really the way the MS docs say to do it. */
596     if (sei->lpVerb == NULL)
597         lpOperation = "open";
598     else
599         lpOperation = sei->lpVerb;
600
601     /* Else, try to execute the filename */
602     TRACE("execute:'%s','%s'\n",szApplicationName, szCommandline);
603
604     strcpy(fileName, szApplicationName);
605     lpFile = fileName;
606     if (szCommandline[0]) {
607         strcat(szApplicationName, " ");
608         strcat(szApplicationName, szCommandline);
609     }
610
611     retval = SHELL_ExecuteA(szApplicationName, sei, is32, FALSE);
612     if (retval > 32)
613         return TRUE;
614
615     /* Else, try to find the executable */
616     cmd[0] = '\0';
617     retval = SHELL_FindExecutable(sei->lpDirectory, lpFile, lpOperation, cmd, lpstrProtocol);
618     if (retval > 32)  /* Found */
619     {
620         if (szCommandline[0]) {
621             strcat(cmd, " ");
622             strcat(cmd, szCommandline);
623         }
624         TRACE("%s/%s => %s/%s\n", szApplicationName, lpOperation, cmd, lpstrProtocol);
625         if (*lpstrProtocol)
626             retval = execute_from_key(lpstrProtocol, szApplicationName, sei, is32);
627         else
628             retval = SHELL_ExecuteA(cmd, sei, is32, FALSE);
629     }
630     else if (PathIsURLA((LPSTR)lpFile))    /* File not found, check for URL */
631     {
632         LPSTR lpstrRes;
633         INT iSize;
634
635         lpstrRes = strchr(lpFile, ':');
636         if (lpstrRes)
637             iSize = lpstrRes - lpFile;
638         else
639             iSize = strlen(lpFile);
640
641         TRACE("Got URL: %s\n", lpFile);
642         /* Looking for ...protocol\shell\lpOperation\command */
643         strncpy(lpstrProtocol, lpFile, iSize);
644         lpstrProtocol[iSize] = '\0';
645         strcat(lpstrProtocol, "\\shell\\");
646         strcat(lpstrProtocol, lpOperation);
647         strcat(lpstrProtocol, "\\command");
648
649         /* Remove File Protocol from lpFile */
650         /* In the case file://path/file     */
651         if (!strncasecmp(lpFile, "file", iSize))
652         {
653             lpFile += iSize;
654             while (*lpFile == ':') lpFile++;
655         }
656         retval = execute_from_key(lpstrProtocol, lpFile, sei, is32);
657     }
658     /* Check if file specified is in the form www.??????.*** */
659     else if (!strncasecmp(lpFile, "www", 3))
660     {
661         /* if so, append lpFile http:// and call ShellExecute */
662         char lpstrTmpFile[256] = "http://" ;
663         strcat(lpstrTmpFile, lpFile);
664         retval = ShellExecuteA(sei->hwnd, lpOperation, lpstrTmpFile, NULL, NULL, 0);
665     }
666
667     if (retval <= 32)
668     {
669         sei->hInstApp = retval;
670         return FALSE;
671     }
672
673     sei->hInstApp = 33;
674     return TRUE;
675 }
676
677
678 /*************************************************************************
679  *                              ShellExecute            [SHELL.20]
680  */
681 HINSTANCE16 WINAPI ShellExecute16( HWND16 hWnd, LPCSTR lpOperation,
682                                    LPCSTR lpFile, LPCSTR lpParameters,
683                                    LPCSTR lpDirectory, INT16 iShowCmd )
684 {
685     SHELLEXECUTEINFOA sei;
686     HANDLE hProcess = 0;
687
688     sei.cbSize = sizeof(sei);
689     sei.fMask = 0;
690     sei.hwnd = HWND_32(hWnd);
691     sei.lpVerb = lpOperation;
692     sei.lpFile = lpFile;
693     sei.lpParameters = lpParameters;
694     sei.lpDirectory = lpDirectory;
695     sei.nShow = iShowCmd;
696     sei.lpIDList = 0;
697     sei.lpClass = 0;
698     sei.hkeyClass = 0;
699     sei.dwHotKey = 0;
700     sei.hProcess = hProcess;
701
702     ShellExecuteExA32 (&sei, FALSE);
703     return (HINSTANCE16)sei.hInstApp;
704 }
705
706 /*************************************************************************
707  * ShellExecuteA                        [SHELL32.290]
708  */
709 HINSTANCE WINAPI ShellExecuteA(HWND hWnd, LPCSTR lpOperation,LPCSTR lpFile,
710                                LPCSTR lpParameters,LPCSTR lpDirectory, INT iShowCmd)
711 {
712     SHELLEXECUTEINFOA sei;
713     HANDLE hProcess = 0;
714
715     TRACE("\n");
716     sei.cbSize = sizeof(sei);
717     sei.fMask = 0;
718     sei.hwnd = hWnd;
719     sei.lpVerb = lpOperation;
720     sei.lpFile = lpFile;
721     sei.lpParameters = lpParameters;
722     sei.lpDirectory = lpDirectory;
723     sei.nShow = iShowCmd;
724     sei.lpIDList = 0;
725     sei.lpClass = 0;
726     sei.hkeyClass = 0;
727     sei.dwHotKey = 0;
728     sei.hProcess = hProcess;
729
730     ShellExecuteExA32 (&sei, TRUE);
731     return sei.hInstApp;
732 }
733
734 /*************************************************************************
735  * ShellExecuteEx                               [SHELL32.291]
736  *
737  */
738 BOOL WINAPI ShellExecuteExAW (LPVOID sei)
739 {
740     if (SHELL_OsIsUnicode())
741         return ShellExecuteExW (sei);
742     return ShellExecuteExA32 (sei, TRUE);
743 }
744
745 /*************************************************************************
746  * ShellExecuteExA                              [SHELL32.292]
747  *
748  */
749 BOOL WINAPI ShellExecuteExA (LPSHELLEXECUTEINFOA sei)
750 {
751     return  ShellExecuteExA32 (sei, TRUE);
752 }
753
754 /*************************************************************************
755  * ShellExecuteExW                              [SHELL32.293]
756  *
757  */
758 BOOL WINAPI ShellExecuteExW (LPSHELLEXECUTEINFOW sei)
759 {
760     SHELLEXECUTEINFOA seiA;
761     DWORD ret;
762
763     TRACE("%p\n", sei);
764
765     memcpy(&seiA, sei, sizeof(SHELLEXECUTEINFOA));
766
767     if (sei->lpVerb)
768         seiA.lpVerb = HEAP_strdupWtoA( GetProcessHeap(), 0, sei->lpVerb);
769
770     if (sei->lpFile)
771         seiA.lpFile = HEAP_strdupWtoA( GetProcessHeap(), 0, sei->lpFile);
772
773     if (sei->lpParameters)
774         seiA.lpParameters = HEAP_strdupWtoA( GetProcessHeap(), 0, sei->lpParameters);
775
776     if (sei->lpDirectory)
777         seiA.lpDirectory = HEAP_strdupWtoA( GetProcessHeap(), 0, sei->lpDirectory);
778
779     if ((sei->fMask & SEE_MASK_CLASSNAME) && sei->lpClass)
780         seiA.lpClass = HEAP_strdupWtoA( GetProcessHeap(), 0, sei->lpClass);
781     else
782         seiA.lpClass = NULL;
783
784     ret = ShellExecuteExA(&seiA);
785
786     if (seiA.lpVerb)    HeapFree( GetProcessHeap(), 0, (LPSTR) seiA.lpVerb );
787     if (seiA.lpFile)    HeapFree( GetProcessHeap(), 0, (LPSTR) seiA.lpFile );
788     if (seiA.lpParameters)      HeapFree( GetProcessHeap(), 0, (LPSTR) seiA.lpParameters );
789     if (seiA.lpDirectory)       HeapFree( GetProcessHeap(), 0, (LPSTR) seiA.lpDirectory );
790     if (seiA.lpClass)   HeapFree( GetProcessHeap(), 0, (LPSTR) seiA.lpClass );
791
792     return ret;
793 }
794
795 /*************************************************************************
796  * ShellExecuteW                        [SHELL32.294]
797  * from shellapi.h
798  * WINSHELLAPI HINSTANCE APIENTRY ShellExecuteW(HWND hwnd, LPCWSTR lpOperation,
799  * LPCWSTR lpFile, LPCWSTR lpParameters, LPCWSTR lpDirectory, INT nShowCmd);
800  */
801 HINSTANCE WINAPI ShellExecuteW(HWND hwnd, LPCWSTR lpOperation, LPCWSTR lpFile,
802                                LPCWSTR lpParameters, LPCWSTR lpDirectory, INT nShowCmd)
803 {
804     SHELLEXECUTEINFOW sei;
805     HANDLE hProcess = 0;
806
807     TRACE("\n");
808     sei.cbSize = sizeof(sei);
809     sei.fMask = 0;
810     sei.hwnd = hwnd;
811     sei.lpVerb = lpOperation;
812     sei.lpFile = lpFile;
813     sei.lpParameters = lpParameters;
814     sei.lpDirectory = lpDirectory;
815     sei.nShow = nShowCmd;
816     sei.lpIDList = 0;
817     sei.lpClass = 0;
818     sei.hkeyClass = 0;
819     sei.dwHotKey = 0;
820     sei.hProcess = hProcess;
821
822     ShellExecuteExW (&sei);
823     return sei.hInstApp;
824 }