ole32: Fix some leaks (coverity).
[wine] / programs / start / start.rc
1 /*
2  * Start
3  *
4  * Copyright 2003 Dan Kegel
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20
21 #include "resources.h"
22
23 LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
24
25 STRINGTABLE
26 {
27 STRING_USAGE, "Start a program, or open a document in the program normally used for files with that suffix.\n\
28 Usage:\n\
29 start [options] program_filename [...]\n\
30 start [options] document_filename\n\
31 \n\
32 Options:\n\
33 \"title\"      Specifies the title of the child windows.\n\
34 /d directory Start the program in the specified directory.\n\
35 /b           Don't create a new console for the program.\n\
36 /i           Start the program with fresh environment variables.\n\
37 /min         Start the program minimized.\n\
38 /max         Start the program maximized.\n\
39 /low         Start the program in the idle priority class.\n\
40 /normal      Start the program in the normal priority class.\n\
41 /high        Start the program in the high priority class.\n\
42 /realtime    Start the program in the realtime priority class.\n\
43 /abovenormal Start the program in the abovenormal priority class.\n\
44 /belownormal Start the program in the belownormal priority class.\n\
45 /node n      Start the program on the specified NUMA node.\n\
46 /affinity mask Start the program with the specified affinity mask.\n\
47 /wait        Wait for the started program to finish, then exit with its exit code.\n\
48 /unix        Use a Unix filename and start the file like windows explorer.\n\
49 /ProgIDOpen  Open a document using the specified progID.\n\
50 /?           Display this help and exit.\n"
51
52 STRING_EXECFAIL, "Application could not be started, or no application associated with the specified file.\nShellExecuteEx failed"
53
54 STRING_UNIXFAIL "Could not translate the specified Unix filename to a DOS filename."
55 }