shdocvw: Register MruListLong.
[wine] / dlls / shdocvw / regsvr.c
1 /*
2  *      self-registerable dll functions for shdocvw.dll
3  *
4  * Copyright (C) 2003 John K. Hohm
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library 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 GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20
21 #include <stdarg.h>
22 #include <string.h>
23
24 #include "windef.h"
25 #include "winbase.h"
26 #include "winuser.h"
27 #include "winreg.h"
28 #include "winerror.h"
29
30 #include "shdocvw.h"
31
32 #include "wine/debug.h"
33
34 WINE_DEFAULT_DEBUG_CHANNEL(shdocvw);
35
36 /*
37  * Near the bottom of this file are the exported DllRegisterServer and
38  * DllUnregisterServer, which make all this worthwhile.
39  */
40
41 /***********************************************************************
42  *              interface for self-registering
43  */
44 struct regsvr_interface
45 {
46     IID const *iid;             /* NULL for end of list */
47     LPCSTR name;                /* can be NULL to omit */
48     IID const *base_iid;        /* can be NULL to omit */
49     int num_methods;            /* can be <0 to omit */
50     CLSID const *ps_clsid;      /* can be NULL to omit */
51     CLSID const *ps_clsid32;    /* can be NULL to omit */
52 };
53
54 static HRESULT register_interfaces(struct regsvr_interface const *list);
55 static HRESULT unregister_interfaces(struct regsvr_interface const *list);
56
57 struct regsvr_coclass
58 {
59     CLSID const *clsid;         /* NULL for end of list */
60     LPCSTR name;                /* can be NULL to omit */
61     LPCSTR ips;                 /* can be NULL to omit */
62     LPCSTR ips32;               /* can be NULL to omit */
63     LPCSTR ips32_tmodel;        /* can be NULL to omit */
64     LPCSTR progid;              /* can be NULL to omit */
65     LPCSTR viprogid;            /* can be NULL to omit */
66     LPCSTR progid_extra;        /* can be NULL to omit */
67 };
68
69 static HRESULT register_coclasses(struct regsvr_coclass const *list);
70 static HRESULT unregister_coclasses(struct regsvr_coclass const *list);
71
72 /***********************************************************************
73  *              static string constants
74  */
75 static WCHAR const interface_keyname[10] = {
76     'I', 'n', 't', 'e', 'r', 'f', 'a', 'c', 'e', 0 };
77 static WCHAR const base_ifa_keyname[14] = {
78     'B', 'a', 's', 'e', 'I', 'n', 't', 'e', 'r', 'f', 'a', 'c',
79     'e', 0 };
80 static WCHAR const num_methods_keyname[11] = {
81     'N', 'u', 'm', 'M', 'e', 't', 'h', 'o', 'd', 's', 0 };
82 static WCHAR const ps_clsid_keyname[15] = {
83     'P', 'r', 'o', 'x', 'y', 'S', 't', 'u', 'b', 'C', 'l', 's',
84     'i', 'd', 0 };
85 static WCHAR const ps_clsid32_keyname[17] = {
86     'P', 'r', 'o', 'x', 'y', 'S', 't', 'u', 'b', 'C', 'l', 's',
87     'i', 'd', '3', '2', 0 };
88 static WCHAR const clsid_keyname[6] = {
89     'C', 'L', 'S', 'I', 'D', 0 };
90 static WCHAR const curver_keyname[7] = {
91     'C', 'u', 'r', 'V', 'e', 'r', 0 };
92 static WCHAR const ips_keyname[13] = {
93     'I', 'n', 'P', 'r', 'o', 'c', 'S', 'e', 'r', 'v', 'e', 'r',
94     0 };
95 static WCHAR const ips32_keyname[15] = {
96     'I', 'n', 'P', 'r', 'o', 'c', 'S', 'e', 'r', 'v', 'e', 'r',
97     '3', '2', 0 };
98 static WCHAR const progid_keyname[7] = {
99     'P', 'r', 'o', 'g', 'I', 'D', 0 };
100 static WCHAR const viprogid_keyname[25] = {
101     'V', 'e', 'r', 's', 'i', 'o', 'n', 'I', 'n', 'd', 'e', 'p',
102     'e', 'n', 'd', 'e', 'n', 't', 'P', 'r', 'o', 'g', 'I', 'D',
103     0 };
104 static char const tmodel_valuename[] = "ThreadingModel";
105 static WCHAR const lcs32_keyname[] = {
106     'L','o','c','a','l','S','e','r','v','e','r','3','2',0 };
107 static const WCHAR szIERelPath[] = {
108     'I','n','t','e','r','n','e','t',' ','E','x','p','l','o','r','e','r','\\',
109     'i','e','x','p','l','o','r','e','.','e','x','e',0 };
110
111 /***********************************************************************
112  *              static helper functions
113  */
114 static LONG register_key_guid(HKEY base, WCHAR const *name, GUID const *guid);
115 static LONG register_key_defvalueW(HKEY base, WCHAR const *name,
116                                    WCHAR const *value);
117 static LONG register_key_defvalueA(HKEY base, WCHAR const *name,
118                                    char const *value);
119 static LONG register_progid(WCHAR const *clsid,
120                             char const *progid, char const *curver_progid,
121                             char const *name, char const *extra);
122 static LONG recursive_delete_key(HKEY key);
123 static LONG recursive_delete_keyA(HKEY base, char const *name);
124 static LONG recursive_delete_keyW(HKEY base, WCHAR const *name);
125
126 /***********************************************************************
127  *              register_interfaces
128  */
129 static HRESULT register_interfaces(struct regsvr_interface const *list)
130 {
131     LONG res = ERROR_SUCCESS;
132     HKEY interface_key;
133
134     res = RegCreateKeyExW(HKEY_CLASSES_ROOT, interface_keyname, 0, NULL, 0,
135                           KEY_READ | KEY_WRITE, NULL, &interface_key, NULL);
136     if (res != ERROR_SUCCESS) goto error_return;
137
138     for (; res == ERROR_SUCCESS && list->iid; ++list) {
139         WCHAR buf[39];
140         HKEY iid_key;
141
142         StringFromGUID2(list->iid, buf, 39);
143         res = RegCreateKeyExW(interface_key, buf, 0, NULL, 0,
144                               KEY_READ | KEY_WRITE, NULL, &iid_key, NULL);
145         if (res != ERROR_SUCCESS) goto error_close_interface_key;
146
147         if (list->name) {
148             res = RegSetValueExA(iid_key, NULL, 0, REG_SZ,
149                                  (CONST BYTE*)(list->name),
150                                  strlen(list->name) + 1);
151             if (res != ERROR_SUCCESS) goto error_close_iid_key;
152         }
153
154         if (list->base_iid) {
155             res = register_key_guid(iid_key, base_ifa_keyname, list->base_iid);
156             if (res != ERROR_SUCCESS) goto error_close_iid_key;
157         }
158
159         if (0 <= list->num_methods) {
160             static WCHAR const fmt[3] = { '%', 'd', 0 };
161             HKEY key;
162
163             res = RegCreateKeyExW(iid_key, num_methods_keyname, 0, NULL, 0,
164                                   KEY_READ | KEY_WRITE, NULL, &key, NULL);
165             if (res != ERROR_SUCCESS) goto error_close_iid_key;
166
167             wsprintfW(buf, fmt, list->num_methods);
168             res = RegSetValueExW(key, NULL, 0, REG_SZ,
169                                  (CONST BYTE*)buf,
170                                  (lstrlenW(buf) + 1) * sizeof(WCHAR));
171             RegCloseKey(key);
172
173             if (res != ERROR_SUCCESS) goto error_close_iid_key;
174         }
175
176         if (list->ps_clsid) {
177             res = register_key_guid(iid_key, ps_clsid_keyname, list->ps_clsid);
178             if (res != ERROR_SUCCESS) goto error_close_iid_key;
179         }
180
181         if (list->ps_clsid32) {
182             res = register_key_guid(iid_key, ps_clsid32_keyname, list->ps_clsid32);
183             if (res != ERROR_SUCCESS) goto error_close_iid_key;
184         }
185
186     error_close_iid_key:
187         RegCloseKey(iid_key);
188     }
189
190 error_close_interface_key:
191     RegCloseKey(interface_key);
192 error_return:
193     return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
194 }
195
196 /***********************************************************************
197  *              unregister_interfaces
198  */
199 static HRESULT unregister_interfaces(struct regsvr_interface const *list)
200 {
201     LONG res = ERROR_SUCCESS;
202     HKEY interface_key;
203
204     res = RegOpenKeyExW(HKEY_CLASSES_ROOT, interface_keyname, 0,
205                         KEY_READ | KEY_WRITE, &interface_key);
206     if (res == ERROR_FILE_NOT_FOUND) return S_OK;
207     if (res != ERROR_SUCCESS) goto error_return;
208
209     for (; res == ERROR_SUCCESS && list->iid; ++list) {
210         WCHAR buf[39];
211
212         StringFromGUID2(list->iid, buf, 39);
213         res = recursive_delete_keyW(interface_key, buf);
214     }
215
216     RegCloseKey(interface_key);
217 error_return:
218     return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
219 }
220
221 /***********************************************************************
222  *              register_coclasses
223  */
224 static HRESULT register_coclasses(struct regsvr_coclass const *list)
225 {
226     LONG res = ERROR_SUCCESS;
227     HKEY coclass_key;
228
229     res = RegCreateKeyExW(HKEY_CLASSES_ROOT, clsid_keyname, 0, NULL, 0,
230                           KEY_READ | KEY_WRITE, NULL, &coclass_key, NULL);
231     if (res != ERROR_SUCCESS) goto error_return;
232
233     for (; res == ERROR_SUCCESS && list->clsid; ++list) {
234         WCHAR buf[39];
235         HKEY clsid_key;
236
237         StringFromGUID2(list->clsid, buf, 39);
238         res = RegCreateKeyExW(coclass_key, buf, 0, NULL, 0,
239                               KEY_READ | KEY_WRITE, NULL, &clsid_key, NULL);
240         if (res != ERROR_SUCCESS) goto error_close_coclass_key;
241
242         if (list->name) {
243             res = RegSetValueExA(clsid_key, NULL, 0, REG_SZ,
244                                  (CONST BYTE*)(list->name),
245                                  strlen(list->name) + 1);
246             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
247         }
248
249         if (list->ips) {
250             res = register_key_defvalueA(clsid_key, ips_keyname, list->ips);
251             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
252         }
253
254         if (list->ips32) {
255             HKEY ips32_key;
256
257             res = RegCreateKeyExW(clsid_key, ips32_keyname, 0, NULL, 0,
258                                   KEY_READ | KEY_WRITE, NULL,
259                                   &ips32_key, NULL);
260             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
261
262             res = RegSetValueExA(ips32_key, NULL, 0, REG_SZ,
263                                  (CONST BYTE*)list->ips32,
264                                  lstrlenA(list->ips32) + 1);
265             if (res == ERROR_SUCCESS && list->ips32_tmodel)
266                 res = RegSetValueExA(ips32_key, tmodel_valuename, 0, REG_SZ,
267                                      (CONST BYTE*)list->ips32_tmodel,
268                                      strlen(list->ips32_tmodel) + 1);
269             RegCloseKey(ips32_key);
270             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
271         }
272
273         if (list->progid) {
274             res = register_key_defvalueA(clsid_key, progid_keyname,
275                                          list->progid);
276             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
277
278             res = register_progid(buf, list->progid, NULL,
279                                   list->name, list->progid_extra);
280             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
281         }
282
283         if (list->viprogid) {
284             res = register_key_defvalueA(clsid_key, viprogid_keyname,
285                                          list->viprogid);
286             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
287
288             res = register_progid(buf, list->viprogid, list->progid,
289                                   list->name, list->progid_extra);
290             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
291         }
292
293     error_close_clsid_key:
294         RegCloseKey(clsid_key);
295     }
296
297 error_close_coclass_key:
298     RegCloseKey(coclass_key);
299 error_return:
300     return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
301 }
302
303 /***********************************************************************
304  *              unregister_coclasses
305  */
306 static HRESULT unregister_coclasses(struct regsvr_coclass const *list)
307 {
308     LONG res = ERROR_SUCCESS;
309     HKEY coclass_key;
310
311     res = RegOpenKeyExW(HKEY_CLASSES_ROOT, clsid_keyname, 0,
312                         KEY_READ | KEY_WRITE, &coclass_key);
313     if (res == ERROR_FILE_NOT_FOUND) return S_OK;
314     if (res != ERROR_SUCCESS) goto error_return;
315
316     for (; res == ERROR_SUCCESS && list->clsid; ++list) {
317         WCHAR buf[39];
318
319         StringFromGUID2(list->clsid, buf, 39);
320         res = recursive_delete_keyW(coclass_key, buf);
321         if (res != ERROR_SUCCESS) goto error_close_coclass_key;
322
323         if (list->progid) {
324             res = recursive_delete_keyA(HKEY_CLASSES_ROOT, list->progid);
325             if (res != ERROR_SUCCESS) goto error_close_coclass_key;
326         }
327
328         if (list->viprogid) {
329             res = recursive_delete_keyA(HKEY_CLASSES_ROOT, list->viprogid);
330             if (res != ERROR_SUCCESS) goto error_close_coclass_key;
331         }
332     }
333
334 error_close_coclass_key:
335     RegCloseKey(coclass_key);
336 error_return:
337     return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
338 }
339
340 /***********************************************************************
341  *              regsvr_key_guid
342  */
343 static LONG register_key_guid(HKEY base, WCHAR const *name, GUID const *guid)
344 {
345     WCHAR buf[39];
346
347     StringFromGUID2(guid, buf, 39);
348     return register_key_defvalueW(base, name, buf);
349 }
350
351 /***********************************************************************
352  *              regsvr_key_defvalueW
353  */
354 static LONG register_key_defvalueW(
355     HKEY base,
356     WCHAR const *name,
357     WCHAR const *value)
358 {
359     LONG res;
360     HKEY key;
361
362     res = RegCreateKeyExW(base, name, 0, NULL, 0,
363                           KEY_READ | KEY_WRITE, NULL, &key, NULL);
364     if (res != ERROR_SUCCESS) return res;
365     res = RegSetValueExW(key, NULL, 0, REG_SZ, (CONST BYTE*)value,
366                          (lstrlenW(value) + 1) * sizeof(WCHAR));
367     RegCloseKey(key);
368     return res;
369 }
370
371 /***********************************************************************
372  *              regsvr_key_defvalueA
373  */
374 static LONG register_key_defvalueA(
375     HKEY base,
376     WCHAR const *name,
377     char const *value)
378 {
379     LONG res;
380     HKEY key;
381
382     res = RegCreateKeyExW(base, name, 0, NULL, 0,
383                           KEY_READ | KEY_WRITE, NULL, &key, NULL);
384     if (res != ERROR_SUCCESS) return res;
385     res = RegSetValueExA(key, NULL, 0, REG_SZ, (CONST BYTE*)value,
386                          lstrlenA(value) + 1);
387     RegCloseKey(key);
388     return res;
389 }
390
391 /***********************************************************************
392  *              regsvr_progid
393  */
394 static LONG register_progid(
395     WCHAR const *clsid,
396     char const *progid,
397     char const *curver_progid,
398     char const *name,
399     char const *extra)
400 {
401     LONG res;
402     HKEY progid_key;
403
404     res = RegCreateKeyExA(HKEY_CLASSES_ROOT, progid, 0,
405                           NULL, 0, KEY_READ | KEY_WRITE, NULL,
406                           &progid_key, NULL);
407     if (res != ERROR_SUCCESS) return res;
408
409     if (name) {
410         res = RegSetValueExA(progid_key, NULL, 0, REG_SZ,
411                              (CONST BYTE*)name, strlen(name) + 1);
412         if (res != ERROR_SUCCESS) goto error_close_progid_key;
413     }
414
415     if (clsid) {
416         res = register_key_defvalueW(progid_key, clsid_keyname, clsid);
417         if (res != ERROR_SUCCESS) goto error_close_progid_key;
418     }
419
420     if (curver_progid) {
421         res = register_key_defvalueA(progid_key, curver_keyname,
422                                      curver_progid);
423         if (res != ERROR_SUCCESS) goto error_close_progid_key;
424     }
425
426     if (extra) {
427         HKEY extra_key;
428
429         res = RegCreateKeyExA(progid_key, extra, 0,
430                               NULL, 0, KEY_READ | KEY_WRITE, NULL,
431                               &extra_key, NULL);
432         if (res == ERROR_SUCCESS)
433             RegCloseKey(extra_key);
434     }
435
436 error_close_progid_key:
437     RegCloseKey(progid_key);
438     return res;
439 }
440
441 /***********************************************************************
442  *              recursive_delete_key
443  */
444 static LONG recursive_delete_key(HKEY key)
445 {
446     LONG res;
447     WCHAR subkey_name[MAX_PATH];
448     DWORD cName;
449     HKEY subkey;
450
451     for (;;) {
452         cName = sizeof(subkey_name) / sizeof(WCHAR);
453         res = RegEnumKeyExW(key, 0, subkey_name, &cName,
454                             NULL, NULL, NULL, NULL);
455         if (res != ERROR_SUCCESS && res != ERROR_MORE_DATA) {
456             res = ERROR_SUCCESS; /* presumably we're done enumerating */
457             break;
458         }
459         res = RegOpenKeyExW(key, subkey_name, 0,
460                             KEY_READ | KEY_WRITE, &subkey);
461         if (res == ERROR_FILE_NOT_FOUND) continue;
462         if (res != ERROR_SUCCESS) break;
463
464         res = recursive_delete_key(subkey);
465         RegCloseKey(subkey);
466         if (res != ERROR_SUCCESS) break;
467     }
468
469     if (res == ERROR_SUCCESS) res = RegDeleteKeyW(key, 0);
470     return res;
471 }
472
473 /***********************************************************************
474  *              recursive_delete_keyA
475  */
476 static LONG recursive_delete_keyA(HKEY base, char const *name)
477 {
478     LONG res;
479     HKEY key;
480
481     res = RegOpenKeyExA(base, name, 0, KEY_READ | KEY_WRITE, &key);
482     if (res == ERROR_FILE_NOT_FOUND) return ERROR_SUCCESS;
483     if (res != ERROR_SUCCESS) return res;
484     res = recursive_delete_key(key);
485     RegCloseKey(key);
486     return res;
487 }
488
489 /***********************************************************************
490  *              recursive_delete_keyW
491  */
492 static LONG recursive_delete_keyW(HKEY base, WCHAR const *name)
493 {
494     LONG res;
495     HKEY key;
496
497     res = RegOpenKeyExW(base, name, 0, KEY_READ | KEY_WRITE, &key);
498     if (res == ERROR_FILE_NOT_FOUND) return ERROR_SUCCESS;
499     if (res != ERROR_SUCCESS) return res;
500     res = recursive_delete_key(key);
501     RegCloseKey(key);
502     return res;
503 }
504
505
506 static const GUID CLSID_MicrosoftBrowserArchitecture =
507 {0xa5e46e3a, 0x8849, 0x11d1, {0x9d, 0x8c, 0x00, 0xc0, 0x4f, 0xc9, 0x9d, 0x61}};
508 static const GUID CLSID_MruLongList =
509 {0x53bd6b4e, 0x3780, 0x4693, {0xaf, 0xc3, 0x71, 0x61, 0xc2, 0xf3, 0xee, 0x9c}};
510
511 /***********************************************************************
512  *              coclass list
513  */
514 static struct regsvr_coclass const coclass_list[] = {
515     {   &CLSID_WebBrowser_V1,
516         "Microsoft Web Browser Version 1",
517         NULL,
518         "shdocvw.dll",
519         "Apartment",
520         "Shell.Explorer.1",
521         "Shell.Explorer"
522     },
523     {   &CLSID_WebBrowser,
524         "Microsoft Web Browser",
525         NULL,
526         "shdocvw.dll",
527         "Apartment",
528         "Shell.Explorer.2",
529         "Shell.Explorer"
530     },
531     {   &CLSID_InternetExplorer,
532         "Internet Explorer(Ver 1.0)",
533         NULL,
534         NULL,
535         NULL,
536         "InternetExplorer.Application.1",
537         "InternetExplorer.Application"
538     },
539     {   &CLSID_ShellSearchAssistantOC,
540         "SearchAssistantOC",
541         NULL,
542         "shdocvw.dll",
543         "Apartment",
544         "SearchAssistantOC.SearchAssistantOC.1",
545         "SearchAssistantOC.SearchAssistantOC"
546     },
547     {   &CLSID_ShellShellNameSpace,
548         "Shell Name Space",
549         NULL,
550         "shdocvw.dll",
551         "Apartment",
552         "ShellNameSpace.ShellNameSpace.1",
553         "ShellNameSpace.ShellNameSpace"
554     },
555     {   &CLSID_ShellNameSpace,
556         "Shell Name Space",
557         NULL,
558         "shdocvw.dll",
559         "Apartment",
560         "ShellNameSpace.ShellNameSpace.1",
561         "ShellNameSpace.ShellNameSpace"
562     },
563     {   &CLSID_ShellUIHelper,
564         "Microsoft Shell UI Helper",
565         NULL,
566         "shdocvw.dll",
567         "Apartment",
568         "Shell.UIHelper.1",
569         NULL
570     },
571     {   &CLSID_ShellWindows,
572         "ShellWindows",
573         NULL,
574         "shdocvw.dll",
575         "Apartment",
576         NULL,
577         NULL
578     },
579     {   &CLSID_SearchAssistantOC,
580         "SearchAssistantOC",
581         NULL,
582         "shdocvw.dll",
583         "Apartment",
584         "SearchAssistantOC.SearchAssistantOC.1",
585         "SearchAssistantOC.SearchAssistantOC"
586     },
587     {
588         &CLSID_MicrosoftBrowserArchitecture,
589         "Microsoft Browser Architecture",
590         NULL,
591         "shdocvw.dll",
592         "Apartment",
593         NULL,
594         NULL
595     },
596     {
597         &CLSID_MruLongList,
598         "MruLongList",
599         NULL,
600         "shdocvw.dll",
601         "Apartment",
602         NULL,
603         NULL
604     },
605     { NULL }                    /* list terminator */
606 };
607
608 /***********************************************************************
609  *              interface list
610  */
611
612 static struct regsvr_interface const interface_list[] = {
613     { NULL }                    /* list terminator */
614 };
615
616 static HRESULT register_localserver(void)
617 {
618     HKEY coclass_key = 0, clsid_key = 0;
619     WCHAR buf[39], path[MAX_PATH];
620     LONG res;
621     UINT len;
622
623     res = SHGetFolderPathW(NULL, CSIDL_FLAG_CREATE|CSIDL_PROGRAM_FILES,
624                            NULL, SHGFP_TYPE_CURRENT, path);
625     if (FAILED(res))
626         return res;
627
628     len = lstrlenW(path);
629     if ((len + (sizeof szIERelPath/sizeof(WCHAR)) + 1) > MAX_PATH)
630         return E_FAIL;
631
632     path[len] = '\\';
633     lstrcpyW(&path[len+1], szIERelPath);
634
635     res = RegCreateKeyExW(HKEY_CLASSES_ROOT, clsid_keyname, 0, NULL, 0,
636                           KEY_READ | KEY_WRITE, NULL, &coclass_key, NULL);
637     if (res != ERROR_SUCCESS) goto err;
638
639     StringFromGUID2(&CLSID_InternetExplorer, buf, 39);
640     res = RegCreateKeyExW(coclass_key, buf, 0, NULL, 0,
641                           KEY_READ | KEY_WRITE, NULL, &clsid_key, NULL);
642     if (res != ERROR_SUCCESS) goto err;
643
644     res = register_key_defvalueW(clsid_key, lcs32_keyname, path);
645     if (res != ERROR_SUCCESS) goto err;
646
647 err:
648     if (clsid_key) RegCloseKey(clsid_key);
649     if (coclass_key) RegCloseKey(coclass_key);
650     return (res == ERROR_SUCCESS) ? S_OK : E_FAIL;
651 }
652
653 /***********************************************************************
654  *              DllRegisterServer (SHDOCVW.@)
655  */
656 HRESULT WINAPI DllRegisterServer(void)
657 {
658     HRESULT hr;
659
660     TRACE("\n");
661
662     hr = register_coclasses(coclass_list);
663     if (SUCCEEDED(hr))
664         hr = register_interfaces(interface_list);
665     if (SUCCEEDED(hr))
666         hr = register_localserver();
667     return hr;
668 }
669
670 /***********************************************************************
671  *              DllUnregisterServer (SHDOCVW.@)
672  */
673 HRESULT WINAPI DllUnregisterServer(void)
674 {
675     HRESULT hr;
676
677     TRACE("\n");
678
679     hr = unregister_coclasses(coclass_list);
680     if (SUCCEEDED(hr))
681         hr = unregister_interfaces(interface_list);
682     return hr;
683 }