100954
|
1 /* Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
|
75249
|
2 Free Software Foundation, Inc.
|
64890
|
3
|
|
4 This file is part of GNU Emacs.
|
|
5
|
94795
|
6 GNU Emacs is free software: you can redistribute it and/or modify
|
64890
|
7 it under the terms of the GNU General Public License as published by
|
94795
|
8 the Free Software Foundation, either version 3 of the License, or
|
|
9 (at your option) any later version.
|
64890
|
10
|
|
11 GNU Emacs 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
|
|
14 GNU General Public License for more details.
|
|
15
|
|
16 You should have received a copy of the GNU General Public License
|
94795
|
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
|
64890
|
18
|
|
19
|
15139
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
20 /*
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
21 Simple program to start Emacs with its console window hidden.
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
22
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
23 This program is provided purely for convenience, since most users will
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
24 use Emacs in windowing (GUI) mode, and will not want to have an extra
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
25 console window lying around. */
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
26
|
15320
|
27 /*
|
|
28 You may want to define this if you want to be able to install updated
|
|
29 emacs binaries even when other users are using the current version.
|
|
30 The problem with some file servers (notably Novell) is that an open
|
|
31 file cannot be overwritten, deleted, or even renamed. So if someone
|
|
32 is running emacs.exe already, you cannot install a newer version.
|
|
33 By defining CHOOSE_NEWEST_EXE, you can name your new emacs.exe
|
|
34 something else which matches "emacs*.exe", and runemacs will
|
73541
964e568f1d1d
(WinMain): Process all recognized arguments, not just the first one.
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
35 automatically select the newest emacs executable in the bin directory.
|
15320
|
36 (So you'll probably be able to delete the old version some hours/days
|
|
37 later).
|
|
38 */
|
|
39
|
|
40 /* #define CHOOSE_NEWEST_EXE */
|
|
41
|
15139
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
42 #include <windows.h>
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
43 #include <string.h>
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
44 #include <malloc.h>
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
45
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
46 int WINAPI
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
47 WinMain (HINSTANCE hSelf, HINSTANCE hPrev, LPSTR cmdline, int nShow)
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
48 {
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
49 STARTUPINFO start;
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
50 SECURITY_ATTRIBUTES sec_attrs;
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
51 PROCESS_INFORMATION child;
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
52 int wait_for_child = FALSE;
|
19720
|
53 DWORD priority_class = NORMAL_PRIORITY_CLASS;
|
15139
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
54 DWORD ret_code = 0;
|
15320
|
55 char *new_cmdline;
|
|
56 char *p;
|
15139
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
57 char modname[MAX_PATH];
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
58
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
59 if (!GetModuleFileName (NULL, modname, MAX_PATH))
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
60 goto error;
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
61 if ((p = strrchr (modname, '\\')) == NULL)
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
62 goto error;
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
63 *p = 0;
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
64
|
38139
|
65 new_cmdline = alloca (MAX_PATH + strlen (cmdline) + 3);
|
|
66 /* Quote executable name in case of spaces in the path. */
|
|
67 *new_cmdline = '"';
|
|
68 strcpy (new_cmdline + 1, modname);
|
15320
|
69
|
|
70 #ifdef CHOOSE_NEWEST_EXE
|
|
71 {
|
|
72 /* Silly hack to allow new versions to be installed on
|
|
73 server even when current version is in use. */
|
15139
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
74
|
15320
|
75 char * best_name = alloca (MAX_PATH + 1);
|
|
76 FILETIME best_time = {0,0};
|
|
77 WIN32_FIND_DATA wfd;
|
|
78 HANDLE fh;
|
|
79 p = new_cmdline + strlen (new_cmdline);
|
38139
|
80 strcpy (p, "\\emacs*.exe\" ");
|
15320
|
81 fh = FindFirstFile (new_cmdline, &wfd);
|
|
82 if (fh == INVALID_HANDLE_VALUE)
|
|
83 goto error;
|
|
84 do
|
|
85 {
|
73541
964e568f1d1d
(WinMain): Process all recognized arguments, not just the first one.
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
86 if (wfd.ftLastWriteTime.dwHighDateTime > best_time.dwHighDateTime
|
964e568f1d1d
(WinMain): Process all recognized arguments, not just the first one.
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
87 || (wfd.ftLastWriteTime.dwHighDateTime == best_time.dwHighDateTime
|
964e568f1d1d
(WinMain): Process all recognized arguments, not just the first one.
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
88 && wfd.ftLastWriteTime.dwLowDateTime > best_time.dwLowDateTime))
|
964e568f1d1d
(WinMain): Process all recognized arguments, not just the first one.
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
89 {
|
964e568f1d1d
(WinMain): Process all recognized arguments, not just the first one.
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
90 best_time = wfd.ftLastWriteTime;
|
964e568f1d1d
(WinMain): Process all recognized arguments, not just the first one.
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
91 strcpy (best_name, wfd.cFileName);
|
964e568f1d1d
(WinMain): Process all recognized arguments, not just the first one.
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
92 }
|
15320
|
93 }
|
|
94 while (FindNextFile (fh, &wfd));
|
|
95 FindClose (fh);
|
|
96 *p++ = '\\';
|
|
97 strcpy (p, best_name);
|
|
98 strcat (p, " ");
|
|
99 }
|
|
100 #else
|
38139
|
101 strcat (new_cmdline, "\\emacs.exe\" ");
|
15320
|
102 #endif
|
|
103
|
19720
|
104 /* Append original arguments if any; first look for arguments we
|
|
105 recognise (-wait, -high, and -low), and apply them ourselves. */
|
|
106 while (cmdline[0] == '-' || cmdline[0] == '/')
|
15320
|
107 {
|
19720
|
108 if (strncmp (cmdline+1, "wait", 4) == 0)
|
|
109 {
|
73541
964e568f1d1d
(WinMain): Process all recognized arguments, not just the first one.
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
110 wait_for_child = TRUE;
|
964e568f1d1d
(WinMain): Process all recognized arguments, not just the first one.
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
111 cmdline += 5;
|
964e568f1d1d
(WinMain): Process all recognized arguments, not just the first one.
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
112 }
|
19720
|
113 else if (strncmp (cmdline+1, "high", 4) == 0)
|
|
114 {
|
|
115 priority_class = HIGH_PRIORITY_CLASS;
|
|
116 cmdline += 5;
|
|
117 }
|
|
118 else if (strncmp (cmdline+1, "low", 3) == 0)
|
|
119 {
|
|
120 priority_class = IDLE_PRIORITY_CLASS;
|
|
121 cmdline += 4;
|
|
122 }
|
|
123 else
|
|
124 break;
|
73541
964e568f1d1d
(WinMain): Process all recognized arguments, not just the first one.
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
125 /* Look for next argument. */
|
964e568f1d1d
(WinMain): Process all recognized arguments, not just the first one.
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
126 while (*++cmdline == ' ');
|
19720
|
127 }
|
73541
964e568f1d1d
(WinMain): Process all recognized arguments, not just the first one.
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
128
|
15139
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
129 strcat (new_cmdline, cmdline);
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
130
|
15320
|
131 /* Set emacs_dir variable if runemacs was in "%emacs_dir%\bin". */
|
15139
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
132 if ((p = strrchr (modname, '\\')) && stricmp (p, "\\bin") == 0)
|
15320
|
133 {
|
|
134 *p = 0;
|
|
135 for (p = modname; *p; p++)
|
|
136 if (*p == '\\') *p = '/';
|
|
137 SetEnvironmentVariable ("emacs_dir", modname);
|
|
138 }
|
15139
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
139
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
140 memset (&start, 0, sizeof (start));
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
141 start.cb = sizeof (start);
|
69378
|
142 start.dwFlags = STARTF_USESHOWWINDOW | STARTF_USECOUNTCHARS;
|
15139
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
143 start.wShowWindow = SW_HIDE;
|
69378
|
144 /* Ensure that we don't waste memory if the user has specified a huge
|
|
145 default screen buffer for command windows. */
|
|
146 start.dwXCountChars = 80;
|
|
147 start.dwYCountChars = 25;
|
15139
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
148
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
149 sec_attrs.nLength = sizeof (sec_attrs);
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
150 sec_attrs.lpSecurityDescriptor = NULL;
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
151 sec_attrs.bInheritHandle = FALSE;
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
152
|
19720
|
153 if (CreateProcess (NULL, new_cmdline, &sec_attrs, NULL, TRUE, priority_class,
|
54773
|
154 NULL, NULL, &start, &child))
|
15139
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
155 {
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
156 if (wait_for_child)
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
157 {
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
158 WaitForSingleObject (child.hProcess, INFINITE);
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
159 GetExitCodeProcess (child.hProcess, &ret_code);
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
160 }
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
161 CloseHandle (child.hThread);
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
162 CloseHandle (child.hProcess);
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
163 }
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
164 else
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
165 goto error;
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
166 return (int) ret_code;
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
167
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
168 error:
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
169 MessageBox (NULL, "Could not start Emacs.", "Error", MB_ICONSTOP);
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
170 return 1;
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
171 }
|
52401
|
172
|
|
173 /* arch-tag: 7e02df73-4df7-4aa0-baea-99c6d047a384
|
|
174 (do not change this comment) */
|