msvcrt: Forward functions to ntdll instead of libc where possible.
[wine/multimedia.git] / programs / start / start.c
blob3effed6bf045e08d7edb8c9c47c60a099a9e240c
1 /*
2 * Start a program using ShellExecuteEx, optionally wait for it to finish
3 * Compatible with Microsoft's "c:\windows\command\start.exe"
5 * Copyright 2003 Dan Kegel
7 * This program 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 program 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 program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <windows.h>
23 #include <winuser.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <shlobj.h>
28 #include "resources.h"
30 /**
31 Output given message to stdout without formatting.
33 static void output(const char *message)
35 DWORD count;
36 WriteFile(GetStdHandle(STD_OUTPUT_HANDLE), message, strlen(message), &count, NULL);
39 /**
40 Output given message,
41 followed by ": ",
42 followed by description of given GetLastError() value to stdout,
43 followed by a trailing newline,
44 then terminate.
46 static void fatal_error(const char *msg, DWORD error_code)
48 LPVOID lpMsgBuf;
49 int status;
51 output(msg);
52 output(": ");
53 status = FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM, NULL, error_code, 0, (LPTSTR) & lpMsgBuf, 0, NULL);
54 if (!status) {
55 output("FormatMessage failed\n");
56 } else {
57 output(lpMsgBuf);
58 LocalFree((HLOCAL) lpMsgBuf);
59 output("\n");
61 ExitProcess(1);
64 /**
65 Output given message from string table,
66 followed by ": ",
67 followed by description of given GetLastError() value to stdout,
68 followed by a trailing newline,
69 then terminate.
71 static void fatal_string_error(int which, DWORD error_code)
73 char msg[2048];
75 if (!LoadString(GetModuleHandle(NULL), which,
76 msg, sizeof(msg)))
77 fatal_error("LoadString failed", GetLastError());
79 fatal_error(msg, error_code);
82 static void fatal_string(int which)
84 char msg[2048];
86 if (!LoadString(GetModuleHandle(NULL), which,
87 msg, sizeof(msg)))
88 fatal_error("LoadString failed", GetLastError());
90 output(msg);
91 ExitProcess(1);
94 static void usage(void)
96 fatal_string(STRING_USAGE);
99 static void license(void)
101 fatal_string(STRING_LICENSE);
104 static char *build_args( int argc, char **argv )
106 int i, len = 1;
107 char *ret, *p;
109 for (i = 0; i < argc; i++ )
110 len += strlen(argv[i]) + 1;
111 ret = HeapAlloc( GetProcessHeap(), 0, len );
113 for (i = 0, p = ret; i < argc; i++ )
114 p += sprintf(p, " %s", argv[i]);
115 return ret;
118 int main(int argc, char *argv[])
120 SHELLEXECUTEINFO sei;
121 char *args;
122 int i;
124 memset(&sei, 0, sizeof(sei));
125 sei.cbSize = sizeof(sei);
126 sei.lpVerb = "open";
127 sei.nShow = SW_SHOWNORMAL;
128 /* Dunno what these mean, but it looks like winMe's start uses them */
129 sei.fMask = SEE_MASK_FLAG_DDEWAIT|SEE_MASK_FLAG_NO_UI;
131 /* Canonical Microsoft commandline flag processing:
132 * flags start with /, are case insensitive,
133 * and may be run together in same word.
135 for (i=1; i<argc; i++) {
136 int ci;
138 if (argv[i][0] != '/')
139 break;
141 /* Handle all options in this word */
142 for (ci=0; argv[i][ci]; ) {
143 /* Skip slash */
144 ci++;
145 switch(argv[i][ci]) {
146 case 'l':
147 case 'L':
148 license();
149 break; /* notreached */
150 case 'm':
151 case 'M':
152 if (argv[i][ci+1] == 'a' || argv[i][ci+1] == 'A')
153 sei.nShow = SW_SHOWMAXIMIZED;
154 else
155 sei.nShow = SW_SHOWMINIMIZED;
156 break;
157 case 'r':
158 case 'R':
159 /* sei.nShow = SW_SHOWNORMAL; */
160 break;
161 case 'w':
162 case 'W':
163 sei.fMask |= SEE_MASK_NOCLOSEPROCESS;
164 break;
165 default:
166 printf("Option '%s' not recognized\n", argv[i]+ci-1);
167 usage();
169 /* Skip to next slash */
170 while (argv[i][ci] && (argv[i][ci] != '/'))
171 ci++;
175 if (i == argc)
176 usage();
178 sei.lpFile = argv[i++];
180 args = build_args( argc - i, &argv[i] );
181 sei.lpParameters = args;
183 if (!ShellExecuteEx(&sei))
184 fatal_string_error(STRING_EXECFAIL, GetLastError());
186 HeapFree( GetProcessHeap(), 0, args );
188 if (sei.fMask & SEE_MASK_NOCLOSEPROCESS) {
189 DWORD exitcode;
190 DWORD waitcode;
191 waitcode = WaitForSingleObject(sei.hProcess, INFINITE);
192 if (waitcode)
193 fatal_error("WaitForSingleObject", GetLastError());
194 if (!GetExitCodeProcess(sei.hProcess, &exitcode))
195 fatal_error("GetExitCodeProcess", GetLastError());
196 /* fixme: haven't tested whether exit code works properly */
197 ExitProcess(exitcode);
200 ExitProcess(0);