1 /* Add entries to the GNU Emacs Program Manager folder.
2 Copyright (C) 1995, 2001, 2002, 2003, 2004, 2005,
3 2006, 2007 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU Emacs 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
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
22 /****************************************************************************
24 * Program: addpm (adds emacs to the Windows program manager)
27 * argv[1] = install path for emacs
28 * argv[2] = full path to icon for emacs (optional)
37 DdeCallback (UINT uType
, UINT uFmt
, HCONV hconv
,
38 HSZ hsz1
, HSZ hsz2
, HDDEDATA hdata
,
39 DWORD dwData1
, DWORD dwData2
)
41 return ((HDDEDATA
) NULL
);
44 #define DdeCommand(str) \
45 DdeClientTransaction (str, strlen (str)+1, HConversation, (HSZ)NULL, \
46 CF_TEXT, XTYP_EXECUTE, 30000, NULL)
48 #define REG_ROOT "SOFTWARE\\GNU\\Emacs"
58 {"EMACSLOADPATH", "%emacs_dir%/site-lisp;%emacs_dir%/../site-lisp;%emacs_dir%/lisp;%emacs_dir%/leim"},
59 {"SHELL", "%emacs_dir%/bin/cmdproxy.exe"},
60 {"EMACSDATA", "%emacs_dir%/etc"},
61 {"EMACSPATH", "%emacs_dir%/bin"},
62 /* We no longer set INFOPATH because Info-default-directory-list
64 /* {"INFOPATH", "%emacs_dir%/info"}, */
65 {"EMACSDOC", "%emacs_dir%/etc"},
77 /* Previous versions relied on registry settings, but we do not need
78 them any more. If registry settings are installed from a previous
79 version, replace them to ensure they are the current settings.
80 Otherwise, do nothing. */
82 /* Check both the current user and the local machine to see if we
83 have any resources. */
85 if (RegOpenKeyEx (HKEY_LOCAL_MACHINE
, REG_ROOT
,
86 REG_OPTION_NON_VOLATILE
,
87 KEY_WRITE
, &hrootkey
) != ERROR_SUCCESS
88 && RegOpenKeyEx (HKEY_CURRENT_USER
, REG_ROOT
,
89 REG_OPTION_NON_VOLATILE
,
90 KEY_WRITE
, &hrootkey
) != ERROR_SUCCESS
)
95 for (i
= 0; i
< (sizeof (env_vars
) / sizeof (env_vars
[0])); i
++)
97 char * value
= env_vars
[i
].value
? env_vars
[i
].value
: path
;
99 if (RegSetValueEx (hrootkey
, env_vars
[i
].name
,
101 value
, lstrlen (value
) + 1) != ERROR_SUCCESS
)
105 RegCloseKey (hrootkey
);
118 char modname
[MAX_PATH
];
119 char additem
[MAX_PATH
*2 + 100];
125 /* If no args specified, use our location to set emacs_path. */
127 if (argc
< 2 || argc
> 3)
129 fprintf (stderr
, "usage: addpm [-q] [emacs_path [icon_path]]\n");
135 && (argv
[1][0] == '/' || argv
[1][0] == '-')
136 && argv
[1][1] == 'q')
144 emacs_path
= argv
[1];
147 if (!GetModuleFileName (NULL
, modname
, MAX_PATH
) ||
148 (p
= strrchr (modname
, '\\')) == NULL
)
150 fprintf (stderr
, "fatal error");
155 /* Set emacs_path to emacs_dir if we are in "%emacs_dir%\bin". */
156 if ((p
= strrchr (modname
, '\\')) && stricmp (p
, "\\bin") == 0)
159 emacs_path
= modname
;
163 fprintf (stderr
, "usage: addpm emacs_path [icon_path]\n");
167 /* Tell user what we are going to do. */
172 char msg
[ MAX_PATH
];
173 sprintf (msg
, "Install Emacs at %s?\n", emacs_path
);
174 result
= MessageBox (NULL
, msg
, "Install Emacs",
175 MB_OKCANCEL
| MB_ICONQUESTION
);
178 fprintf (stderr
, "Install cancelled\n");
184 add_registry (emacs_path
);
185 prog_name
= "runemacs.exe";
187 DdeInitialize (&idDde
, (PFNCALLBACK
)DdeCallback
, APPCMD_CLIENTONLY
, 0);
189 ProgMan
= DdeCreateStringHandle (idDde
, "PROGMAN", CP_WINANSI
);
191 HConversation
= DdeConnect (idDde
, ProgMan
, ProgMan
, NULL
);
192 if (HConversation
!= 0)
194 DdeCommand ("[CreateGroup (\"Gnu Emacs\")]");
195 DdeCommand ("[ReplaceItem (Emacs)]");
197 sprintf (additem
, "[AddItem (\"%s\\bin\\%s\", Emacs, \"%s\")]",
198 emacs_path
, prog_name
, argv
[2]);
200 sprintf (additem
, "[AddItem (\"%s\\bin\\%s\", Emacs)]",
201 emacs_path
, prog_name
);
202 DdeCommand (additem
);
204 DdeDisconnect (HConversation
);
207 DdeFreeStringHandle (idDde
, ProgMan
);
209 DdeUninitialize (idDde
);
214 /* arch-tag: f923609d-b781-4ef4-abce-ca0da29cbbf0
215 (do not change this comment) */