]> code.delx.au - gnu-emacs/blob - nt/addpm.c
addpm.c: Don't pass REG_OPTION_NON_VOLATILE to RegOpenKeyEx
[gnu-emacs] / nt / addpm.c
1 /* Add entries to the GNU Emacs Program Manager folder.
2 Copyright (C) 1995, 2001-2015 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
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
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
18
19 /****************************************************************************
20 *
21 * Program: addpm (adds emacs to the Windows program manager)
22 *
23 * Usage:
24 * argv[1] = install path for emacs
25 *
26 * argv[2] used to be an optional argument for setting the icon.
27 * But now Emacs has a professional looking icon of its own.
28 * If users really want to change it, they can go into the settings of
29 * the shortcut that is created and do it there.
30 */
31
32 /* Use parts of shell API that were introduced by the merge of IE4
33 into the desktop shell. If Windows 95 or NT4 users do not have IE4
34 installed, then the DDE fallback for creating icons the Windows 3.1
35 progman way will be used instead, but that is prone to lockups
36 caused by other applications not servicing their message queues. */
37 #include <stdlib.h>
38 #include <stdio.h>
39 #include <malloc.h>
40
41 /* MinGW64 barfs if _WIN32_IE is defined to anything below 0x500. */
42 #ifndef MINGW_W64
43 #define _WIN32_IE 0x400
44 #endif
45 /* Request C Object macros for COM interfaces. */
46 #define COBJMACROS 1
47
48 #include <windows.h>
49 #include <shlobj.h>
50 #include <ddeml.h>
51
52 #ifndef OLD_PATHS
53 #include "../src/epaths.h"
54 #endif
55
56 HDDEDATA CALLBACK
57 DdeCallback (UINT uType, UINT uFmt, HCONV hconv,
58 HSZ hsz1, HSZ hsz2, HDDEDATA hdata,
59 DWORD dwData1, DWORD dwData2)
60 {
61 return ((HDDEDATA) NULL);
62 }
63
64 #define DdeCommand(str) \
65 DdeClientTransaction (str, strlen (str)+1, conversation, (HSZ)NULL, \
66 CF_TEXT, XTYP_EXECUTE, 30000, NULL)
67
68 #define REG_ROOT "SOFTWARE\\GNU\\Emacs"
69 #define REG_GTK "SOFTWARE\\GTK\\2.0"
70 #define REG_APP_PATH \
71 "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\emacs.exe"
72 #define REG_RUNEMACS_PATH \
73 "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\runemacs.exe"
74
75 static struct entry
76 {
77 const char *name;
78 const char *value;
79 }
80 env_vars[] =
81 {
82 #ifdef OLD_PATHS
83 {"emacs_dir", NULL},
84 {"EMACSLOADPATH", "%emacs_dir%/site-lisp;%emacs_dir%/../site-lisp;%emacs_dir%/lisp"},
85 {"SHELL", "%emacs_dir%/bin/cmdproxy.exe"},
86 {"EMACSDATA", "%emacs_dir%/etc"},
87 {"EMACSPATH", "%emacs_dir%/bin"},
88 /* We no longer set INFOPATH because Info-default-directory-list
89 is then ignored. */
90 /* {"INFOPATH", "%emacs_dir%/info"}, */
91 {"EMACSDOC", "%emacs_dir%/etc"},
92 {"TERM", "cmd"}
93 #else /* !OLD_PATHS */
94 {"emacs_dir", NULL},
95 {"EMACSLOADPATH", PATH_SITELOADSEARCH ";" PATH_LOADSEARCH},
96 {"SHELL", PATH_EXEC "/cmdproxy.exe"},
97 {"EMACSDATA", PATH_DATA},
98 {"EMACSPATH", PATH_EXEC},
99 /* We no longer set INFOPATH because Info-default-directory-list
100 is then ignored. */
101 /* {"INFOPATH", "%emacs_dir%/info"}, */
102 {"EMACSDOC", PATH_DOC},
103 {"TERM", "cmd"}
104 #endif
105 };
106
107 BOOL
108 add_registry (const char *path)
109 {
110 HKEY hrootkey = NULL;
111 int i;
112 BOOL ok = TRUE;
113 DWORD size;
114
115 /* Record the location of Emacs to the App Paths key if we have
116 sufficient permissions to do so. This helps Windows find emacs quickly
117 if the user types emacs.exe in the "Run Program" dialog without having
118 emacs on their path. Some applications also use the same registry key
119 to discover the installation directory for programs they are looking for.
120 Multiple installations cannot be handled by this method, but it does not
121 affect the general operation of other installations of Emacs, and we
122 are blindly overwriting the Start Menu entries already.
123 */
124 if (RegCreateKeyEx (HKEY_LOCAL_MACHINE, REG_APP_PATH, 0, "",
125 REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL,
126 &hrootkey, NULL) == ERROR_SUCCESS)
127 {
128 int len;
129 char *emacs_path;
130 HKEY gtk_key = NULL;
131
132 len = strlen (path) + 15; /* \bin\emacs.exe + terminator. */
133 emacs_path = (char *) alloca (len);
134 sprintf (emacs_path, "%s\\bin\\emacs.exe", path);
135
136 RegSetValueEx (hrootkey, NULL, 0, REG_EXPAND_SZ, emacs_path, len);
137
138 /* Look for a GTK installation. If found, add it to the library search
139 path for Emacs so that the image libraries it provides are available
140 to Emacs regardless of whether it is in the path or not. */
141 if (RegOpenKeyEx (HKEY_LOCAL_MACHINE, REG_GTK, 0,
142 KEY_READ, &gtk_key) == ERROR_SUCCESS)
143 {
144 if (RegQueryValueEx (gtk_key, "DllPath", NULL, NULL,
145 NULL, &size) == ERROR_SUCCESS)
146 {
147 char *gtk_path = (char *) alloca (size);
148 if (RegQueryValueEx (gtk_key, "DllPath", NULL, NULL,
149 gtk_path, &size) == ERROR_SUCCESS)
150 {
151 /* Make sure the emacs bin directory continues to be searched
152 first by including it as well. */
153 char *dll_paths;
154 HKEY runemacs_key = NULL;
155 len = strlen (path) + 5 + size;
156 dll_paths = (char *) alloca (size + strlen (path) + 1);
157 sprintf (dll_paths, "%s\\bin;%s", path, gtk_path);
158 RegSetValueEx (hrootkey, "Path", 0, REG_EXPAND_SZ,
159 dll_paths, len);
160
161 /* Set the same path for runemacs.exe, as the Explorer shell
162 looks this up, so the above does not take effect when
163 emacs.exe is spawned from runemacs.exe. */
164 if (RegCreateKeyEx (HKEY_LOCAL_MACHINE, REG_RUNEMACS_PATH,
165 0, "", REG_OPTION_NON_VOLATILE,
166 KEY_WRITE, NULL, &runemacs_key, NULL)
167 == ERROR_SUCCESS)
168 {
169 RegSetValueEx (runemacs_key, "Path", 0, REG_EXPAND_SZ,
170 dll_paths, len);
171
172 RegCloseKey (runemacs_key);
173 }
174 }
175 }
176 RegCloseKey (gtk_key);
177 }
178 RegCloseKey (hrootkey);
179 }
180
181 /* Previous versions relied on registry settings, but we do not need
182 them any more. If registry settings are installed from a previous
183 version, replace them to ensure they are the current settings.
184 Otherwise, do nothing. */
185
186 /* Check both the current user and the local machine to see if we
187 have any resources. */
188
189 if (RegOpenKeyEx (HKEY_LOCAL_MACHINE, REG_ROOT, 0,
190 KEY_WRITE, &hrootkey) != ERROR_SUCCESS
191 && RegOpenKeyEx (HKEY_CURRENT_USER, REG_ROOT, 0,
192 KEY_WRITE, &hrootkey) != ERROR_SUCCESS)
193 {
194 return FALSE;
195 }
196
197 for (i = 0; i < (sizeof (env_vars) / sizeof (env_vars[0])); i++)
198 {
199 const char * value = env_vars[i].value ? env_vars[i].value : path;
200
201 if (RegSetValueEx (hrootkey, env_vars[i].name,
202 0, REG_EXPAND_SZ,
203 value, lstrlen (value) + 1) != ERROR_SUCCESS)
204 ok = FALSE;
205 }
206
207 RegCloseKey (hrootkey);
208
209 return (ok);
210 }
211
212 int
213 main (int argc, char *argv[])
214 {
215 char start_folder[MAX_PATH + 1];
216 int shortcuts_created = 0;
217 int com_available = 1;
218 char modname[MAX_PATH];
219 const char *prog_name;
220 const char *emacs_path;
221 char *p;
222 int quiet = 0;
223 HRESULT result;
224 IShellLinkA *shortcut;
225
226 /* If no args specified, use our location to set emacs_path. */
227
228 if (argc > 1
229 && (argv[1][0] == '/' || argv[1][0] == '-')
230 && argv[1][1] == 'q')
231 {
232 quiet = 1;
233 --argc;
234 ++argv;
235 }
236
237 if (argc > 1)
238 emacs_path = argv[1];
239 else
240 {
241 if (!GetModuleFileName (NULL, modname, MAX_PATH) ||
242 (p = strrchr (modname, '\\')) == NULL)
243 {
244 fprintf (stderr, "fatal error");
245 exit (1);
246 }
247 *p = 0;
248
249 /* Set emacs_path to emacs_dir if we are in "%emacs_dir%\bin". */
250 if ((p = strrchr (modname, '\\')) && stricmp (p, "\\bin") == 0)
251 {
252 *p = 0;
253 emacs_path = modname;
254 }
255 else
256 {
257 fprintf (stderr, "usage: addpm emacs_path\n");
258 exit (1);
259 }
260
261 /* Tell user what we are going to do. */
262 if (!quiet)
263 {
264 int result;
265
266 char msg[ MAX_PATH ];
267 sprintf (msg, "Install Emacs at %s?\n", emacs_path);
268 result = MessageBox (NULL, msg, "Install Emacs",
269 MB_OKCANCEL | MB_ICONQUESTION);
270 if (result != IDOK)
271 {
272 fprintf (stderr, "Install canceled\n");
273 exit (1);
274 }
275 }
276 }
277
278 add_registry (emacs_path);
279 prog_name = "runemacs.exe";
280
281 /* Try to install globally. */
282
283 if (!SUCCEEDED (CoInitialize (NULL))
284 || !SUCCEEDED (CoCreateInstance (&CLSID_ShellLink, NULL,
285 CLSCTX_INPROC_SERVER, &IID_IShellLinkA,
286 (void **) &shortcut)))
287 {
288 com_available = 0;
289 }
290
291 if (com_available
292 && SHGetSpecialFolderPath (NULL, start_folder, CSIDL_COMMON_PROGRAMS, 0))
293 {
294 if (strlen (start_folder) < (MAX_PATH - 20))
295 {
296 strcat (start_folder, "\\Gnu Emacs");
297 if (CreateDirectory (start_folder, NULL)
298 || GetLastError () == ERROR_ALREADY_EXISTS)
299 {
300 char full_emacs_path[MAX_PATH + 1];
301 IPersistFile *lnk;
302 strcat (start_folder, "\\Emacs.lnk");
303 sprintf (full_emacs_path, "%s\\bin\\%s", emacs_path, prog_name);
304 IShellLinkA_SetPath (shortcut, full_emacs_path);
305 IShellLinkA_SetDescription (shortcut, "GNU Emacs");
306 result = IShellLinkA_QueryInterface (shortcut, &IID_IPersistFile,
307 (void **) &lnk);
308 if (SUCCEEDED (result))
309 {
310 wchar_t unicode_path[MAX_PATH];
311 MultiByteToWideChar (CP_ACP, 0, start_folder, -1,
312 unicode_path, MAX_PATH);
313 if (SUCCEEDED (IPersistFile_Save (lnk, unicode_path, TRUE)))
314 shortcuts_created = 1;
315 IPersistFile_Release (lnk);
316 }
317 }
318 }
319 }
320
321 if (!shortcuts_created && com_available
322 && SHGetSpecialFolderPath (NULL, start_folder, CSIDL_PROGRAMS, 0))
323 {
324 /* Ensure there is enough room for "...\GNU Emacs\Emacs.lnk". */
325 if (strlen (start_folder) < (MAX_PATH - 20))
326 {
327 strcat (start_folder, "\\Gnu Emacs");
328 if (CreateDirectory (start_folder, NULL)
329 || GetLastError () == ERROR_ALREADY_EXISTS)
330 {
331 char full_emacs_path[MAX_PATH + 1];
332 IPersistFile *lnk;
333 strcat (start_folder, "\\Emacs.lnk");
334 sprintf (full_emacs_path, "%s\\bin\\%s", emacs_path, prog_name);
335 IShellLinkA_SetPath (shortcut, full_emacs_path);
336 IShellLinkA_SetDescription (shortcut, "GNU Emacs");
337 result = IShellLinkA_QueryInterface (shortcut, &IID_IPersistFile,
338 (void **) &lnk);
339 if (SUCCEEDED (result))
340 {
341 wchar_t unicode_path[MAX_PATH];
342 MultiByteToWideChar (CP_ACP, 0, start_folder, -1,
343 unicode_path, MAX_PATH);
344 if (SUCCEEDED (IPersistFile_Save (lnk, unicode_path, TRUE)))
345 shortcuts_created = 1;
346 IPersistFile_Release (lnk);
347
348 }
349 }
350 }
351 }
352
353 if (com_available)
354 IShellLinkA_Release (shortcut);
355
356 /* Need to call uninitialize, even if ComInitialize failed. */
357 CoUninitialize ();
358
359 /* Fallback on old DDE method if the above failed. */
360 if (!shortcuts_created)
361 {
362 DWORD dde = 0;
363 HCONV conversation;
364 HSZ progman;
365 char add_item[MAX_PATH*2 + 100];
366
367 DdeInitialize (&dde, (PFNCALLBACK) DdeCallback, APPCMD_CLIENTONLY, 0);
368 progman = DdeCreateStringHandle (dde, "PROGMAN", CP_WINANSI);
369 conversation = DdeConnect (dde, progman, progman, NULL);
370 if (conversation)
371 {
372 DdeCommand ("[CreateGroup (\"Gnu Emacs\")]");
373 DdeCommand ("[ReplaceItem (Emacs)]");
374 sprintf (add_item, "[AddItem (\"%s\\bin\\%s\", Emacs)]",
375 emacs_path, prog_name);
376 DdeCommand (add_item);
377
378 DdeDisconnect (conversation);
379 }
380
381 DdeFreeStringHandle (dde, progman);
382 DdeUninitialize (dde);
383 }
384
385 return 0;
386 }