Remove the entry for the 19.34 release. RMS says it was done on a branch.
[bpt/emacs.git] / nt / addpm.c
CommitLineData
cef9e134
GV
1/* Add entries to the GNU Emacs Program Manager folder.
2 Copyright (C) 1995 Free Software Foundation, Inc.
3
bf2b146b
EN
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
cef9e134 20
cef9e134 21/****************************************************************************
6fbcbee7
RS
22 *
23 * Program: addpm (adds emacs to the Windows program manager)
24 *
25 * Usage:
2cc1905e 26 * argv[1] = install path for emacs
6fbcbee7
RS
27 * argv[2] = full path to icon for emacs (optional)
28 */
cef9e134 29
6fbcbee7
RS
30#include <windows.h>
31#include <ddeml.h>
32#include <stdlib.h>
33#include <stdio.h>
cef9e134 34
2cc1905e
GV
35HDDEDATA CALLBACK
36DdeCallback (UINT uType, UINT uFmt, HCONV hconv,
37 HSZ hsz1, HSZ hsz2, HDDEDATA hdata,
38 DWORD dwData1, DWORD dwData2)
6fbcbee7 39{
2cc1905e 40 return ((HDDEDATA) NULL);
6fbcbee7 41}
cef9e134 42
6fbcbee7 43#define DdeCommand(str) \
2cc1905e 44 DdeClientTransaction (str, strlen (str)+1, HConversation, (HSZ)NULL, \
6fbcbee7 45 CF_TEXT, XTYP_EXECUTE, 30000, NULL)
cef9e134 46
c6e63684 47#define REG_ROOT "SOFTWARE\\GNU\\Emacs"
2cc1905e
GV
48
49static struct entry
50{
51 char *name;
52 char *value;
53}
54env_vars[] =
55{
c6e63684 56 {"emacs_dir", NULL},
5488afcc 57 {"EMACSLOADPATH", "%emacs_dir%/site-lisp;%emacs_dir%/../site-lisp;%emacs_dir%/lisp;%emacs_dir%/leim"},
0655d4d4 58 {"SHELL", "%emacs_dir%/bin/cmdproxy.exe"},
26b430b7
RS
59 {"EMACSDATA", "%emacs_dir%/etc"},
60 {"EMACSPATH", "%emacs_dir%/bin"},
61 {"EMACSLOCKDIR", "%emacs_dir%/lock"},
9296c0e8
GV
62 /* We no longer set INFOPATH because Info-default-directory-list
63 is then ignored. */
64 /* {"INFOPATH", "%emacs_dir%/info"}, */
26b430b7 65 {"EMACSDOC", "%emacs_dir%/etc"},
2cc1905e
GV
66 {"TERM", "cmd"}
67};
68
69BOOL
70add_registry (path)
71 char *path;
72{
73 HKEY hrootkey = NULL;
74 DWORD dwDisp;
75 int i;
76 BOOL ok = TRUE;
77
78 /* Check both the current user and the local machine to see if we
79 have any resources. */
80
81 if (RegCreateKeyEx (HKEY_LOCAL_MACHINE, REG_ROOT,
82 0, "", REG_OPTION_NON_VOLATILE,
83 KEY_WRITE, NULL, &hrootkey, &dwDisp) != ERROR_SUCCESS
84 && RegCreateKeyEx (HKEY_CURRENT_USER, REG_ROOT,
85 0, "", REG_OPTION_NON_VOLATILE,
86 KEY_WRITE, NULL, &hrootkey, &dwDisp) != ERROR_SUCCESS)
87 {
88 return FALSE;
89 }
90
91 for (i = 0; i < (sizeof (env_vars) / sizeof (env_vars[0])); i++)
92 {
93 char * value = env_vars[i].value ? env_vars[i].value : path;
94
95 if (RegSetValueEx (hrootkey, env_vars[i].name,
96 0, REG_EXPAND_SZ,
97 value, lstrlen (value) + 1) != ERROR_SUCCESS)
98 ok = FALSE;
99 }
100
101 RegCloseKey (hrootkey);
102
103 return (ok);
104}
105
106int
6fbcbee7
RS
107main (argc, argv)
108 int argc;
109 char *argv[];
cef9e134 110{
65cd6687 111 DWORD idDde = 0;
6fbcbee7
RS
112 HCONV HConversation;
113 HSZ ProgMan;
65cd6687 114 char modname[MAX_PATH];
cef9e134 115 char additem[MAX_PATH*2 + 100];
9296c0e8 116 char *prog_name;
65cd6687
GV
117 char *emacs_path;
118 char *p;
5205d900 119 int quiet = 0;
cef9e134 120
65cd6687
GV
121 /* If no args specified, use our location to set emacs_path. */
122#if 0
6fbcbee7 123 if (argc < 2 || argc > 3)
cef9e134 124 {
5205d900 125 fprintf (stderr, "usage: addpm [/q] [emacs_path [icon_path]]\n");
2cc1905e 126 exit (1);
cef9e134 127 }
65cd6687 128#endif
cef9e134 129
5205d900
AI
130 if (argc > 1 && argv[1][0] == '/' && argv[1][1] == 'q')
131 {
132 quiet = 1;
133 --argc;
134 ++argv;
135 }
136
65cd6687
GV
137 if (argc > 1)
138 emacs_path = argv[1];
139 else
140 {
141 if (!GetModuleFileName (NULL, modname, MAX_PATH) ||
142 (p = strrchr (modname, '\\')) == NULL)
143 {
144 fprintf (stderr, "fatal error");
145 exit (1);
146 }
147 *p = 0;
148
149 /* Set emacs_path to emacs_dir if we are in "%emacs_dir%\bin". */
150 if ((p = strrchr (modname, '\\')) && stricmp (p, "\\bin") == 0)
151 {
152 *p = 0;
153 emacs_path = modname;
154 }
155 else
156 {
157 fprintf (stderr, "usage: addpm emacs_path [icon_path]\n");
158 exit (1);
159 }
160
161 /* Tell user what we are going to do. */
5205d900
AI
162 if (!quiet)
163 {
164 int result;
165
166 char msg[ MAX_PATH ];
167 sprintf (msg, "Install Emacs at %s?\n", emacs_path);
168 result = MessageBox (NULL, msg, "Install Emacs",
169 MB_OKCANCEL | MB_ICONQUESTION);
170 if (result != IDOK)
171 {
172 fprintf (stderr, "Install cancelled\n");
173 exit (1);
174 }
175 }
65cd6687
GV
176 }
177
5205d900
AI
178 add_registry (emacs_path);
179 prog_name = "runemacs.exe";
2cc1905e 180
6fbcbee7 181 DdeInitialize (&idDde, (PFNCALLBACK)DdeCallback, APPCMD_CLIENTONLY, 0);
cef9e134 182
6fbcbee7 183 ProgMan = DdeCreateStringHandle (idDde, "PROGMAN", CP_WINANSI);
cef9e134 184
9296c0e8
GV
185 HConversation = DdeConnect (idDde, ProgMan, ProgMan, NULL);
186 if (HConversation != 0)
cef9e134 187 {
9296c0e8 188 DdeCommand ("[CreateGroup (\"Gnu Emacs\")]");
2cc1905e 189 DdeCommand ("[ReplaceItem (Emacs)]");
9296c0e8
GV
190 if (argc > 2)
191 sprintf (additem, "[AddItem (\"%s\\bin\\%s\", Emacs, \"%s\")]",
192 emacs_path, prog_name, argv[2]);
193 else
194 sprintf (additem, "[AddItem (\"%s\\bin\\%s\", Emacs)]",
195 emacs_path, prog_name);
6fbcbee7
RS
196 DdeCommand (additem);
197
198 DdeDisconnect (HConversation);
cef9e134
GV
199 }
200
6fbcbee7
RS
201 DdeFreeStringHandle (idDde, ProgMan);
202
203 DdeUninitialize (idDde);
cef9e134 204
6fbcbee7 205 return (0);
cef9e134 206}