1995-06-10 02:24:19 +00:00
|
|
|
/* Add entries to the GNU Emacs Program Manager folder.
|
2024-01-02 01:47:10 +00:00
|
|
|
Copyright (C) 1995, 2001-2024 Free Software Foundation, Inc.
|
1995-06-10 02:24:19 +00:00
|
|
|
|
1996-01-15 08:32:56 +00:00
|
|
|
This file is part of GNU Emacs.
|
|
|
|
|
2008-05-09 05:14:16 +00:00
|
|
|
GNU Emacs is free software: you can redistribute it and/or modify
|
1996-01-15 08:32:56 +00:00
|
|
|
it under the terms of the GNU General Public License as published by
|
2016-03-10 15:34:52 +00:00
|
|
|
the Free Software Foundation, either version 3 of the License, or (at
|
|
|
|
your option) any later version.
|
1996-01-15 08:32:56 +00:00
|
|
|
|
|
|
|
GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2017-09-30 00:44:23 +00:00
|
|
|
along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
|
1995-06-10 02:24:19 +00:00
|
|
|
|
|
|
|
/****************************************************************************
|
1995-06-20 02:53:59 +00:00
|
|
|
*
|
|
|
|
* Program: addpm (adds emacs to the Windows program manager)
|
|
|
|
*
|
|
|
|
* Usage:
|
1995-11-07 07:58:00 +00:00
|
|
|
* argv[1] = install path for emacs
|
2009-01-15 15:03:15 +00:00
|
|
|
*
|
|
|
|
* argv[2] used to be an optional argument for setting the icon.
|
|
|
|
* But now Emacs has a professional looking icon of its own.
|
|
|
|
* If users really want to change it, they can go into the settings of
|
|
|
|
* the shortcut that is created and do it there.
|
1995-06-20 02:53:59 +00:00
|
|
|
*/
|
1995-06-10 02:24:19 +00:00
|
|
|
|
2009-01-15 15:03:15 +00:00
|
|
|
/* Use parts of shell API that were introduced by the merge of IE4
|
|
|
|
into the desktop shell. If Windows 95 or NT4 users do not have IE4
|
|
|
|
installed, then the DDE fallback for creating icons the Windows 3.1
|
|
|
|
progman way will be used instead, but that is prone to lockups
|
|
|
|
caused by other applications not servicing their message queues. */
|
2021-10-24 03:35:18 +00:00
|
|
|
|
2021-10-24 17:45:56 +00:00
|
|
|
#define DEFER_MS_W32_H
|
2021-10-24 03:35:18 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
2013-03-27 07:21:43 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <malloc.h>
|
|
|
|
|
2018-08-18 13:10:28 +00:00
|
|
|
/* MinGW64 barfs if _WIN32_IE is defined to anything below 0x0500. */
|
2014-11-17 22:06:13 +00:00
|
|
|
#ifndef MINGW_W64
|
2018-08-18 13:10:28 +00:00
|
|
|
# ifdef _WIN32_IE
|
|
|
|
# undef _WIN32_IE
|
|
|
|
# endif
|
|
|
|
#define _WIN32_IE 0x0400
|
2013-03-26 08:21:27 +00:00
|
|
|
#endif
|
2009-01-15 15:03:15 +00:00
|
|
|
/* Request C Object macros for COM interfaces. */
|
|
|
|
#define COBJMACROS 1
|
|
|
|
|
1995-06-20 02:53:59 +00:00
|
|
|
#include <windows.h>
|
2009-01-15 15:03:15 +00:00
|
|
|
#include <shlobj.h>
|
1995-06-20 02:53:59 +00:00
|
|
|
#include <ddeml.h>
|
1995-06-10 02:24:19 +00:00
|
|
|
|
2013-04-15 13:39:41 +00:00
|
|
|
#ifndef OLD_PATHS
|
|
|
|
#include "../src/epaths.h"
|
|
|
|
#endif
|
|
|
|
|
2019-11-09 09:53:02 +00:00
|
|
|
HDDEDATA CALLBACK DdeCallback (UINT, UINT, HCONV, HSZ, HSZ, HDDEDATA, DWORD_PTR,
|
|
|
|
DWORD_PTR);
|
Avoid compilation warnings in nt/*.c files
* nt/cmdproxy.c (fail, vfprintf, fprintf, printf, warn)
(console_event_handler): Add prototypes.
(canon_filename, skip_space, skip_nonspace, get_next_token)
(batch_file_p, search_dir, make_absolute, try_dequote_cmdline)
(spawn, get_env_size): Now static.
* nt/ddeclient.c (DdeCallback): Provide prototype.
* nt/addpm.c (DdeCallback): Provide prototype.
(add_registry): Now static.
2016-12-03 09:54:24 +00:00
|
|
|
|
2003-02-04 14:56:31 +00:00
|
|
|
HDDEDATA CALLBACK
|
1995-11-07 07:58:00 +00:00
|
|
|
DdeCallback (UINT uType, UINT uFmt, HCONV hconv,
|
|
|
|
HSZ hsz1, HSZ hsz2, HDDEDATA hdata,
|
2019-11-09 09:53:02 +00:00
|
|
|
DWORD_PTR dwData1, DWORD_PTR dwData2)
|
1995-06-20 02:53:59 +00:00
|
|
|
{
|
1995-11-07 07:58:00 +00:00
|
|
|
return ((HDDEDATA) NULL);
|
1995-06-20 02:53:59 +00:00
|
|
|
}
|
1995-06-10 02:24:19 +00:00
|
|
|
|
1995-06-20 02:53:59 +00:00
|
|
|
#define DdeCommand(str) \
|
2015-10-24 22:58:08 +00:00
|
|
|
DdeClientTransaction ((LPBYTE)str, strlen (str)+1, conversation, (HSZ)NULL, \
|
1995-06-20 02:53:59 +00:00
|
|
|
CF_TEXT, XTYP_EXECUTE, 30000, NULL)
|
1995-06-10 02:24:19 +00:00
|
|
|
|
1996-05-03 18:19:05 +00:00
|
|
|
#define REG_ROOT "SOFTWARE\\GNU\\Emacs"
|
2008-02-11 15:36:20 +00:00
|
|
|
#define REG_APP_PATH \
|
|
|
|
"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\emacs.exe"
|
1995-11-07 07:58:00 +00:00
|
|
|
|
|
|
|
static struct entry
|
|
|
|
{
|
nt/*.c: Use const char*; remove unused code.
* addpm.c (entry, add_registry, main):
* addsection.c (file_data, open_input_file, open_output_file)
(find_section, PTR_TO_OFFSET, copy_executable_and_add_section)
(COPY_CHUNK):
* cmdproxy.c (vfprintf, fprintf, printf, fail, warn, skip_space)
(skip_nonspace, get_next_token, search_dir, make_absolute)
(spawn, main):
* preprep.c (file_data, open_input_file, open_output_file)
(open_inout_file, find_section, PTR_TO_OFFSET, COPY_CHUNK, main):
Use const char*.
* cmdproxy.c (stdin): Don't define, not used.
(main): Don't assign remlen after last use.
2010-09-28 00:55:08 +00:00
|
|
|
const char *name;
|
|
|
|
const char *value;
|
2003-02-04 14:56:31 +00:00
|
|
|
}
|
|
|
|
env_vars[] =
|
1995-11-07 07:58:00 +00:00
|
|
|
{
|
2013-04-15 13:39:41 +00:00
|
|
|
#ifdef OLD_PATHS
|
1996-05-03 18:19:05 +00:00
|
|
|
{"emacs_dir", NULL},
|
Move runtime leim lisp files to lisp/leim directory
This allows us to reuse much of the lisp build and installation machinery,
rather than duplicating it.
* Makefile.in (abs_builddir, leimdir): Remove.
(buildlisppath, SUBDIR, COPYDIR, COPYDESTS): No more leim directory.
(epaths-force-w32): No longer set BLD.
(leim): Remove.
(install-arch-indep): No longer run or install leim.
(mostlyclean, clean): No longer run leim rule.
(bootstrap-clean): Change leim target.
(maintainer-clean): Add leim.
(check-declare): Remove leim.
* README: Update for leim changes.
* configure.ac (leimdir): Remove.
(standardlisppath): No more leimdir.
* make-dist: Update for files from leim/ now being in lisp/leim/.
* doc/lispref/loading.texi (Library Search):
* doc/lispref/os.texi (Startup Summary): No more leim directory.
* leim/Makefile.in (leimdir): New variable.
(TIT_GB, TIT_BIG5, MISC, changed.tit, changed.misc)
(${leimdir}/leim-list.el, ${leimdir}/ja-dic/ja-dic.el):
Generate in $leimdir.
(all): Remove compilation, add ja-dic.
(leim-list.el): Now PHONY.
(setwins, compile-targets, compile-main, clean, mostlyclean)
(extraclean): Remove.
(bootstrap-clean): Delete all generated files.
* leim/README: Update for moved leim/ directory.
* leim/leim-ext.el (ucs-input-activate, hangul-input-method-activate):
Remove manual autoloads; now in loaddefs.el.
Disable byte-compile, version-control, autoloads in the output.
* lisp/Makefile.in (setwins_for_subdirs): Skip leim/ directory.
(compile-main): Depend on lisp/leim rule.
(leim): New rule.
* lisp/loadup.el: Move leim-list.el to leim/ subdirectory.
* lisp/startup.el (normal-top-level): No more leim directory.
* lisp/international/ja-dic-cnv.el (skkdic-convert):
Disable version-control and autoloads in output files.
* lisp/international/titdic-cnv.el (titdic-convert, miscdic-convert):
Disable version-control and autoloads in output files.
* lisp/leim/quail: Move here from ../leim.
* lisp/leim/quail/hangul.el (hangul-input-method-activate):
Add autoload cookie.
(generated-autoload-load-name): Set file-local value.
* lisp/leim/quail/uni-input.el (ucs-input-activate): Add autoload cookie.
(generated-autoload-load-name): Set file-local value.
* nt/README.W32:
* nt/addpm.c (env_vars):
* nt/epaths.nt (PATH_LOADSEARCH, PATH_DUMPLOADSEARCH):
* nt/paths.h (PATH_LOADSEARCH): No more leim directory.
* src/Makefile.in (leimdir): Now in lisp source directory.
($(leimdir)/leim-list.el): Just use ../leim .
* src/epaths.in (PATH_DUMPLOADSEARCH):
* src/lread.c (load_path_default):
* src/nsterm.m (ns_load_path): No more leim directory.
* .bzrignore: Update for relocated leim files.
2013-11-27 06:15:06 +00:00
|
|
|
{"EMACSLOADPATH", "%emacs_dir%/site-lisp;%emacs_dir%/../site-lisp;%emacs_dir%/lisp"},
|
1997-10-01 05:42:45 +00:00
|
|
|
{"SHELL", "%emacs_dir%/bin/cmdproxy.exe"},
|
1996-06-03 17:44:23 +00:00
|
|
|
{"EMACSDATA", "%emacs_dir%/etc"},
|
|
|
|
{"EMACSPATH", "%emacs_dir%/bin"},
|
1997-09-03 02:18:15 +00:00
|
|
|
/* We no longer set INFOPATH because Info-default-directory-list
|
|
|
|
is then ignored. */
|
|
|
|
/* {"INFOPATH", "%emacs_dir%/info"}, */
|
1996-06-03 17:44:23 +00:00
|
|
|
{"EMACSDOC", "%emacs_dir%/etc"},
|
1995-11-07 07:58:00 +00:00
|
|
|
{"TERM", "cmd"}
|
2013-04-15 13:39:41 +00:00
|
|
|
#else /* !OLD_PATHS */
|
|
|
|
{"emacs_dir", NULL},
|
|
|
|
{"EMACSLOADPATH", PATH_SITELOADSEARCH ";" PATH_LOADSEARCH},
|
|
|
|
{"SHELL", PATH_EXEC "/cmdproxy.exe"},
|
|
|
|
{"EMACSDATA", PATH_DATA},
|
|
|
|
{"EMACSPATH", PATH_EXEC},
|
|
|
|
/* We no longer set INFOPATH because Info-default-directory-list
|
|
|
|
is then ignored. */
|
|
|
|
/* {"INFOPATH", "%emacs_dir%/info"}, */
|
|
|
|
{"EMACSDOC", PATH_DOC},
|
|
|
|
{"TERM", "cmd"}
|
|
|
|
#endif
|
1995-11-07 07:58:00 +00:00
|
|
|
};
|
|
|
|
|
Avoid compilation warnings in nt/*.c files
* nt/cmdproxy.c (fail, vfprintf, fprintf, printf, warn)
(console_event_handler): Add prototypes.
(canon_filename, skip_space, skip_nonspace, get_next_token)
(batch_file_p, search_dir, make_absolute, try_dequote_cmdline)
(spawn, get_env_size): Now static.
* nt/ddeclient.c (DdeCallback): Provide prototype.
* nt/addpm.c (DdeCallback): Provide prototype.
(add_registry): Now static.
2016-12-03 09:54:24 +00:00
|
|
|
static void
|
nt/*.c: Use const char*; remove unused code.
* addpm.c (entry, add_registry, main):
* addsection.c (file_data, open_input_file, open_output_file)
(find_section, PTR_TO_OFFSET, copy_executable_and_add_section)
(COPY_CHUNK):
* cmdproxy.c (vfprintf, fprintf, printf, fail, warn, skip_space)
(skip_nonspace, get_next_token, search_dir, make_absolute)
(spawn, main):
* preprep.c (file_data, open_input_file, open_output_file)
(open_inout_file, find_section, PTR_TO_OFFSET, COPY_CHUNK, main):
Use const char*.
* cmdproxy.c (stdin): Don't define, not used.
(main): Don't assign remlen after last use.
2010-09-28 00:55:08 +00:00
|
|
|
add_registry (const char *path)
|
1995-11-07 07:58:00 +00:00
|
|
|
{
|
|
|
|
HKEY hrootkey = NULL;
|
|
|
|
int i;
|
2008-02-11 15:36:20 +00:00
|
|
|
|
|
|
|
/* Record the location of Emacs to the App Paths key if we have
|
|
|
|
sufficient permissions to do so. This helps Windows find emacs quickly
|
|
|
|
if the user types emacs.exe in the "Run Program" dialog without having
|
|
|
|
emacs on their path. Some applications also use the same registry key
|
|
|
|
to discover the installation directory for programs they are looking for.
|
|
|
|
Multiple installations cannot be handled by this method, but it does not
|
|
|
|
affect the general operation of other installations of Emacs, and we
|
|
|
|
are blindly overwriting the Start Menu entries already.
|
|
|
|
*/
|
2015-10-24 22:58:08 +00:00
|
|
|
if (RegCreateKeyEx (HKEY_LOCAL_MACHINE, REG_APP_PATH, 0, NULL,
|
2008-02-11 15:36:20 +00:00
|
|
|
REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL,
|
|
|
|
&hrootkey, NULL) == ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
int len;
|
|
|
|
char *emacs_path;
|
|
|
|
|
|
|
|
len = strlen (path) + 15; /* \bin\emacs.exe + terminator. */
|
2008-02-25 11:28:07 +00:00
|
|
|
emacs_path = (char *) alloca (len);
|
2008-02-11 15:36:20 +00:00
|
|
|
sprintf (emacs_path, "%s\\bin\\emacs.exe", path);
|
|
|
|
|
2010-08-19 16:38:41 +00:00
|
|
|
RegSetValueEx (hrootkey, NULL, 0, REG_EXPAND_SZ, emacs_path, len);
|
2008-02-11 15:36:20 +00:00
|
|
|
RegCloseKey (hrootkey);
|
|
|
|
}
|
2003-02-04 14:56:31 +00:00
|
|
|
|
2006-03-12 18:10:29 +00:00
|
|
|
/* Previous versions relied on registry settings, but we do not need
|
|
|
|
them any more. If registry settings are installed from a previous
|
|
|
|
version, replace them to ensure they are the current settings.
|
|
|
|
Otherwise, do nothing. */
|
|
|
|
|
2003-02-04 14:56:31 +00:00
|
|
|
/* Check both the current user and the local machine to see if we
|
1995-11-07 07:58:00 +00:00
|
|
|
have any resources. */
|
2003-02-04 14:56:31 +00:00
|
|
|
|
2015-10-24 01:22:50 +00:00
|
|
|
if (RegOpenKeyEx (HKEY_LOCAL_MACHINE, REG_ROOT, 0,
|
2015-10-24 02:31:30 +00:00
|
|
|
KEY_WRITE | KEY_QUERY_VALUE, &hrootkey) != ERROR_SUCCESS
|
2015-10-24 01:22:50 +00:00
|
|
|
&& RegOpenKeyEx (HKEY_CURRENT_USER, REG_ROOT, 0,
|
2015-10-24 02:31:30 +00:00
|
|
|
KEY_WRITE | KEY_QUERY_VALUE, &hrootkey) != ERROR_SUCCESS)
|
2015-10-24 02:01:22 +00:00
|
|
|
return;
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
|
|
for (i = 0; i < (sizeof (env_vars) / sizeof (env_vars[0])); i++)
|
1995-11-07 07:58:00 +00:00
|
|
|
{
|
nt/*.c: Use const char*; remove unused code.
* addpm.c (entry, add_registry, main):
* addsection.c (file_data, open_input_file, open_output_file)
(find_section, PTR_TO_OFFSET, copy_executable_and_add_section)
(COPY_CHUNK):
* cmdproxy.c (vfprintf, fprintf, printf, fail, warn, skip_space)
(skip_nonspace, get_next_token, search_dir, make_absolute)
(spawn, main):
* preprep.c (file_data, open_input_file, open_output_file)
(open_inout_file, find_section, PTR_TO_OFFSET, COPY_CHUNK, main):
Use const char*.
* cmdproxy.c (stdin): Don't define, not used.
(main): Don't assign remlen after last use.
2010-09-28 00:55:08 +00:00
|
|
|
const char * value = env_vars[i].value ? env_vars[i].value : path;
|
2003-02-04 14:56:31 +00:00
|
|
|
|
2015-10-24 02:31:30 +00:00
|
|
|
/* Replace only those settings that already exist. */
|
|
|
|
if (RegQueryValueEx (hrootkey, env_vars[i].name, NULL,
|
|
|
|
NULL, NULL, NULL) == ERROR_SUCCESS)
|
|
|
|
RegSetValueEx (hrootkey, env_vars[i].name, 0, REG_EXPAND_SZ,
|
|
|
|
value, lstrlen (value) + 1);
|
2003-02-04 14:56:31 +00:00
|
|
|
}
|
|
|
|
|
1995-11-07 07:58:00 +00:00
|
|
|
RegCloseKey (hrootkey);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
Convert some more functions to standard C.
* lib-src/emacsclient.c (get_current_dir_name, w32_get_resource)
(w32_getenv, w32_set_user_model_id, w32_window_app, w32_execvp)
(close_winsock, initialize_sockets, w32_find_emacs_process)
(w32_give_focus):
* lib-src/ntlib.c (getlogin, getuid, getgid, getegid):
* nt/addpm.c (add_registry, main):
* nt/cmdproxy.c (get_env_size):
* nt/ddeclient.c (main):
* nt/runemacs.c (set_user_model_id):
* src/alloc.c (emacs_blocked_free, emacs_blocked_malloc)
(emacs_blocked_realloc, uninterrupt_malloc):
* src/fringe.c (w32_reset_fringes):
* src/image.c (convert_mono_to_color_image, lookup_rgb_color)
(init_color_table, XPutPixel, jpeg_resync_to_restart_wrapper):
* src/sound.c (be2hs, do_play_sound):
* src/vm-limit.c (get_lim_data, ret_lim_data):
* src/w32term.c (x_free_frame_resources):
* src/xfaces.c (x_create_gc, x_free_gc):
Convert definitions to standard C.
2010-07-20 20:21:03 +00:00
|
|
|
main (int argc, char *argv[])
|
1995-06-10 02:24:19 +00:00
|
|
|
{
|
2009-01-15 15:03:15 +00:00
|
|
|
char start_folder[MAX_PATH + 1];
|
|
|
|
int shortcuts_created = 0;
|
|
|
|
int com_available = 1;
|
1997-08-17 01:44:27 +00:00
|
|
|
char modname[MAX_PATH];
|
nt/*.c: Use const char*; remove unused code.
* addpm.c (entry, add_registry, main):
* addsection.c (file_data, open_input_file, open_output_file)
(find_section, PTR_TO_OFFSET, copy_executable_and_add_section)
(COPY_CHUNK):
* cmdproxy.c (vfprintf, fprintf, printf, fail, warn, skip_space)
(skip_nonspace, get_next_token, search_dir, make_absolute)
(spawn, main):
* preprep.c (file_data, open_input_file, open_output_file)
(open_inout_file, find_section, PTR_TO_OFFSET, COPY_CHUNK, main):
Use const char*.
* cmdproxy.c (stdin): Don't define, not used.
(main): Don't assign remlen after last use.
2010-09-28 00:55:08 +00:00
|
|
|
const char *prog_name;
|
|
|
|
const char *emacs_path;
|
1997-08-17 01:44:27 +00:00
|
|
|
char *p;
|
2000-08-22 21:43:12 +00:00
|
|
|
int quiet = 0;
|
2009-01-15 15:03:15 +00:00
|
|
|
HRESULT result;
|
|
|
|
IShellLinkA *shortcut;
|
1995-06-10 02:24:19 +00:00
|
|
|
|
1997-08-17 01:44:27 +00:00
|
|
|
/* If no args specified, use our location to set emacs_path. */
|
1995-06-10 02:24:19 +00:00
|
|
|
|
2006-03-12 17:16:54 +00:00
|
|
|
if (argc > 1
|
|
|
|
&& (argv[1][0] == '/' || argv[1][0] == '-')
|
|
|
|
&& argv[1][1] == 'q')
|
2000-08-22 21:43:12 +00:00
|
|
|
{
|
|
|
|
quiet = 1;
|
|
|
|
--argc;
|
|
|
|
++argv;
|
|
|
|
}
|
|
|
|
|
1997-08-17 01:44:27 +00:00
|
|
|
if (argc > 1)
|
|
|
|
emacs_path = argv[1];
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!GetModuleFileName (NULL, modname, MAX_PATH) ||
|
|
|
|
(p = strrchr (modname, '\\')) == NULL)
|
|
|
|
{
|
|
|
|
fprintf (stderr, "fatal error");
|
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
*p = 0;
|
|
|
|
|
|
|
|
/* Set emacs_path to emacs_dir if we are in "%emacs_dir%\bin". */
|
|
|
|
if ((p = strrchr (modname, '\\')) && stricmp (p, "\\bin") == 0)
|
|
|
|
{
|
|
|
|
*p = 0;
|
|
|
|
emacs_path = modname;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-01-15 15:03:15 +00:00
|
|
|
fprintf (stderr, "usage: addpm emacs_path\n");
|
1997-08-17 01:44:27 +00:00
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Tell user what we are going to do. */
|
2000-08-22 21:43:12 +00:00
|
|
|
if (!quiet)
|
|
|
|
{
|
|
|
|
int result;
|
|
|
|
|
2019-06-08 07:02:45 +00:00
|
|
|
const char install_msg[] = "Install Emacs at %s?\n";
|
|
|
|
char msg[ MAX_PATH + sizeof (install_msg) ];
|
|
|
|
sprintf (msg, install_msg, emacs_path);
|
2000-08-22 21:43:12 +00:00
|
|
|
result = MessageBox (NULL, msg, "Install Emacs",
|
|
|
|
MB_OKCANCEL | MB_ICONQUESTION);
|
|
|
|
if (result != IDOK)
|
|
|
|
{
|
2011-12-04 08:02:42 +00:00
|
|
|
fprintf (stderr, "Install canceled\n");
|
2000-08-22 21:43:12 +00:00
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
}
|
1997-08-17 01:44:27 +00:00
|
|
|
}
|
|
|
|
|
2000-08-22 21:43:12 +00:00
|
|
|
add_registry (emacs_path);
|
|
|
|
prog_name = "runemacs.exe";
|
1995-11-07 07:58:00 +00:00
|
|
|
|
2009-01-15 15:03:15 +00:00
|
|
|
/* Try to install globally. */
|
1995-06-10 02:24:19 +00:00
|
|
|
|
2009-01-15 15:03:15 +00:00
|
|
|
if (!SUCCEEDED (CoInitialize (NULL))
|
|
|
|
|| !SUCCEEDED (CoCreateInstance (&CLSID_ShellLink, NULL,
|
|
|
|
CLSCTX_INPROC_SERVER, &IID_IShellLinkA,
|
|
|
|
(void **) &shortcut)))
|
|
|
|
{
|
|
|
|
com_available = 0;
|
|
|
|
}
|
1995-06-10 02:24:19 +00:00
|
|
|
|
2009-01-15 15:03:15 +00:00
|
|
|
if (com_available
|
|
|
|
&& SHGetSpecialFolderPath (NULL, start_folder, CSIDL_COMMON_PROGRAMS, 0))
|
1995-06-10 02:24:19 +00:00
|
|
|
{
|
2009-01-15 15:03:15 +00:00
|
|
|
if (strlen (start_folder) < (MAX_PATH - 20))
|
|
|
|
{
|
|
|
|
strcat (start_folder, "\\Gnu Emacs");
|
|
|
|
if (CreateDirectory (start_folder, NULL)
|
|
|
|
|| GetLastError () == ERROR_ALREADY_EXISTS)
|
|
|
|
{
|
|
|
|
char full_emacs_path[MAX_PATH + 1];
|
|
|
|
IPersistFile *lnk;
|
|
|
|
strcat (start_folder, "\\Emacs.lnk");
|
|
|
|
sprintf (full_emacs_path, "%s\\bin\\%s", emacs_path, prog_name);
|
|
|
|
IShellLinkA_SetPath (shortcut, full_emacs_path);
|
|
|
|
IShellLinkA_SetDescription (shortcut, "GNU Emacs");
|
|
|
|
result = IShellLinkA_QueryInterface (shortcut, &IID_IPersistFile,
|
|
|
|
(void **) &lnk);
|
|
|
|
if (SUCCEEDED (result))
|
|
|
|
{
|
|
|
|
wchar_t unicode_path[MAX_PATH];
|
|
|
|
MultiByteToWideChar (CP_ACP, 0, start_folder, -1,
|
|
|
|
unicode_path, MAX_PATH);
|
|
|
|
if (SUCCEEDED (IPersistFile_Save (lnk, unicode_path, TRUE)))
|
|
|
|
shortcuts_created = 1;
|
|
|
|
IPersistFile_Release (lnk);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!shortcuts_created && com_available
|
|
|
|
&& SHGetSpecialFolderPath (NULL, start_folder, CSIDL_PROGRAMS, 0))
|
|
|
|
{
|
|
|
|
/* Ensure there is enough room for "...\GNU Emacs\Emacs.lnk". */
|
|
|
|
if (strlen (start_folder) < (MAX_PATH - 20))
|
|
|
|
{
|
|
|
|
strcat (start_folder, "\\Gnu Emacs");
|
|
|
|
if (CreateDirectory (start_folder, NULL)
|
|
|
|
|| GetLastError () == ERROR_ALREADY_EXISTS)
|
|
|
|
{
|
|
|
|
char full_emacs_path[MAX_PATH + 1];
|
|
|
|
IPersistFile *lnk;
|
|
|
|
strcat (start_folder, "\\Emacs.lnk");
|
|
|
|
sprintf (full_emacs_path, "%s\\bin\\%s", emacs_path, prog_name);
|
|
|
|
IShellLinkA_SetPath (shortcut, full_emacs_path);
|
|
|
|
IShellLinkA_SetDescription (shortcut, "GNU Emacs");
|
|
|
|
result = IShellLinkA_QueryInterface (shortcut, &IID_IPersistFile,
|
|
|
|
(void **) &lnk);
|
|
|
|
if (SUCCEEDED (result))
|
|
|
|
{
|
|
|
|
wchar_t unicode_path[MAX_PATH];
|
|
|
|
MultiByteToWideChar (CP_ACP, 0, start_folder, -1,
|
|
|
|
unicode_path, MAX_PATH);
|
|
|
|
if (SUCCEEDED (IPersistFile_Save (lnk, unicode_path, TRUE)))
|
|
|
|
shortcuts_created = 1;
|
|
|
|
IPersistFile_Release (lnk);
|
Convert some more functions to standard C.
* lib-src/emacsclient.c (get_current_dir_name, w32_get_resource)
(w32_getenv, w32_set_user_model_id, w32_window_app, w32_execvp)
(close_winsock, initialize_sockets, w32_find_emacs_process)
(w32_give_focus):
* lib-src/ntlib.c (getlogin, getuid, getgid, getegid):
* nt/addpm.c (add_registry, main):
* nt/cmdproxy.c (get_env_size):
* nt/ddeclient.c (main):
* nt/runemacs.c (set_user_model_id):
* src/alloc.c (emacs_blocked_free, emacs_blocked_malloc)
(emacs_blocked_realloc, uninterrupt_malloc):
* src/fringe.c (w32_reset_fringes):
* src/image.c (convert_mono_to_color_image, lookup_rgb_color)
(init_color_table, XPutPixel, jpeg_resync_to_restart_wrapper):
* src/sound.c (be2hs, do_play_sound):
* src/vm-limit.c (get_lim_data, ret_lim_data):
* src/w32term.c (x_free_frame_resources):
* src/xfaces.c (x_create_gc, x_free_gc):
Convert definitions to standard C.
2010-07-20 20:21:03 +00:00
|
|
|
|
2009-01-15 15:03:15 +00:00
|
|
|
}
|
|
|
|
}
|
Convert some more functions to standard C.
* lib-src/emacsclient.c (get_current_dir_name, w32_get_resource)
(w32_getenv, w32_set_user_model_id, w32_window_app, w32_execvp)
(close_winsock, initialize_sockets, w32_find_emacs_process)
(w32_give_focus):
* lib-src/ntlib.c (getlogin, getuid, getgid, getegid):
* nt/addpm.c (add_registry, main):
* nt/cmdproxy.c (get_env_size):
* nt/ddeclient.c (main):
* nt/runemacs.c (set_user_model_id):
* src/alloc.c (emacs_blocked_free, emacs_blocked_malloc)
(emacs_blocked_realloc, uninterrupt_malloc):
* src/fringe.c (w32_reset_fringes):
* src/image.c (convert_mono_to_color_image, lookup_rgb_color)
(init_color_table, XPutPixel, jpeg_resync_to_restart_wrapper):
* src/sound.c (be2hs, do_play_sound):
* src/vm-limit.c (get_lim_data, ret_lim_data):
* src/w32term.c (x_free_frame_resources):
* src/xfaces.c (x_create_gc, x_free_gc):
Convert definitions to standard C.
2010-07-20 20:21:03 +00:00
|
|
|
}
|
1995-06-10 02:24:19 +00:00
|
|
|
}
|
|
|
|
|
2009-01-15 15:03:15 +00:00
|
|
|
if (com_available)
|
|
|
|
IShellLinkA_Release (shortcut);
|
|
|
|
|
|
|
|
/* Need to call uninitialize, even if ComInitialize failed. */
|
|
|
|
CoUninitialize ();
|
|
|
|
|
|
|
|
/* Fallback on old DDE method if the above failed. */
|
|
|
|
if (!shortcuts_created)
|
|
|
|
{
|
|
|
|
DWORD dde = 0;
|
|
|
|
HCONV conversation;
|
|
|
|
HSZ progman;
|
|
|
|
char add_item[MAX_PATH*2 + 100];
|
|
|
|
|
|
|
|
DdeInitialize (&dde, (PFNCALLBACK) DdeCallback, APPCMD_CLIENTONLY, 0);
|
|
|
|
progman = DdeCreateStringHandle (dde, "PROGMAN", CP_WINANSI);
|
|
|
|
conversation = DdeConnect (dde, progman, progman, NULL);
|
|
|
|
if (conversation)
|
|
|
|
{
|
|
|
|
DdeCommand ("[CreateGroup (\"Gnu Emacs\")]");
|
|
|
|
DdeCommand ("[ReplaceItem (Emacs)]");
|
|
|
|
sprintf (add_item, "[AddItem (\"%s\\bin\\%s\", Emacs)]",
|
|
|
|
emacs_path, prog_name);
|
|
|
|
DdeCommand (add_item);
|
|
|
|
|
|
|
|
DdeDisconnect (conversation);
|
|
|
|
}
|
1995-06-20 02:53:59 +00:00
|
|
|
|
2009-01-15 15:03:15 +00:00
|
|
|
DdeFreeStringHandle (dde, progman);
|
|
|
|
DdeUninitialize (dde);
|
|
|
|
}
|
1995-06-10 02:24:19 +00:00
|
|
|
|
2009-01-15 15:03:15 +00:00
|
|
|
return 0;
|
1995-06-10 02:24:19 +00:00
|
|
|
}
|