2 * self-registerable dll functions for oleaut32.dll
4 * Copyright (C) 2003 John K. Hohm
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.
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.
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
36 #include "wine/debug.h"
38 WINE_DEFAULT_DEBUG_CHANNEL(ole);
41 * Near the bottom of this file are the exported DllRegisterServer and
42 * DllUnregisterServer, which make all this worthwhile.
45 /***********************************************************************
46 * interface for self-registering
48 struct regsvr_interface
50 IID const *iid; /* NULL for end of list */
51 LPCSTR name; /* can be NULL to omit */
52 IID const *base_iid; /* can be NULL to omit */
53 int num_methods; /* can be <0 to omit */
54 CLSID const *ps_clsid; /* can be NULL to omit */
55 CLSID const *ps_clsid32; /* can be NULL to omit */
58 static HRESULT register_interfaces(struct regsvr_interface const *list);
59 static HRESULT unregister_interfaces(struct regsvr_interface const *list);
63 CLSID const *clsid; /* NULL for end of list */
64 LPCSTR name; /* can be NULL to omit */
65 LPCSTR ips; /* can be NULL to omit */
66 LPCSTR ips32; /* can be NULL to omit */
67 LPCSTR ips32_tmodel; /* can be NULL to omit */
68 LPCSTR clsid_str; /* can be NULL to omit */
69 LPCSTR progid; /* can be NULL to omit */
72 static HRESULT register_coclasses(struct regsvr_coclass const *list);
73 static HRESULT unregister_coclasses(struct regsvr_coclass const *list);
75 /***********************************************************************
76 * static string constants
78 static WCHAR const interface_keyname[10] = {
79 'I', 'n', 't', 'e', 'r', 'f', 'a', 'c', 'e', 0 };
80 static WCHAR const base_ifa_keyname[14] = {
81 'B', 'a', 's', 'e', 'I', 'n', 't', 'e', 'r', 'f', 'a', 'c',
83 static WCHAR const num_methods_keyname[11] = {
84 'N', 'u', 'm', 'M', 'e', 't', 'h', 'o', 'd', 's', 0 };
85 static WCHAR const ps_clsid_keyname[15] = {
86 'P', 'r', 'o', 'x', 'y', 'S', 't', 'u', 'b', 'C', 'l', 's',
88 static WCHAR const ps_clsid32_keyname[17] = {
89 'P', 'r', 'o', 'x', 'y', 'S', 't', 'u', 'b', 'C', 'l', 's',
90 'i', 'd', '3', '2', 0 };
91 static WCHAR const clsid_keyname[6] = {
92 'C', 'L', 'S', 'I', 'D', 0 };
93 static WCHAR const ips_keyname[13] = {
94 'I', 'n', 'P', 'r', 'o', 'c', 'S', 'e', 'r', 'v', 'e', 'r',
96 static WCHAR const ips32_keyname[15] = {
97 'I', 'n', 'P', 'r', 'o', 'c', 'S', 'e', 'r', 'v', 'e', 'r',
99 static WCHAR const progid_keyname[7] = {
100 'P', 'r', 'o', 'g', 'I', 'D', 0 };
101 static char const tmodel_valuename[] = "ThreadingModel";
103 /***********************************************************************
104 * static helper functions
106 static LONG register_key_guid(HKEY base, WCHAR const *name, GUID const *guid);
107 static LONG register_key_defvalueW(HKEY base, WCHAR const *name,
109 static LONG register_key_defvalueA(HKEY base, WCHAR const *name,
111 static LONG recursive_delete_key(HKEY key);
112 static LONG recursive_delete_keyA(HKEY base, char const *name);
113 static LONG recursive_delete_keyW(HKEY base, WCHAR const *name);
115 /***********************************************************************
116 * register_interfaces
118 static HRESULT register_interfaces(struct regsvr_interface const *list)
120 LONG res = ERROR_SUCCESS;
123 res = RegCreateKeyExW(HKEY_CLASSES_ROOT, interface_keyname, 0, NULL, 0,
124 KEY_READ | KEY_WRITE, NULL, &interface_key, NULL);
125 if (res != ERROR_SUCCESS) goto error_return;
127 for (; res == ERROR_SUCCESS && list->iid; ++list) {
131 StringFromGUID2(list->iid, buf, 39);
132 res = RegCreateKeyExW(interface_key, buf, 0, NULL, 0,
133 KEY_READ | KEY_WRITE, NULL, &iid_key, NULL);
134 if (res != ERROR_SUCCESS) goto error_close_interface_key;
137 res = RegSetValueExA(iid_key, NULL, 0, REG_SZ,
138 (CONST BYTE*)(list->name),
139 strlen(list->name) + 1);
140 if (res != ERROR_SUCCESS) goto error_close_iid_key;
143 if (list->base_iid) {
144 res = register_key_guid(iid_key, base_ifa_keyname, list->base_iid);
145 if (res != ERROR_SUCCESS) goto error_close_iid_key;
148 if (0 <= list->num_methods) {
149 static WCHAR const fmt[3] = { '%', 'd', 0 };
152 res = RegCreateKeyExW(iid_key, num_methods_keyname, 0, NULL, 0,
153 KEY_READ | KEY_WRITE, NULL, &key, NULL);
154 if (res != ERROR_SUCCESS) goto error_close_iid_key;
156 wsprintfW(buf, fmt, list->num_methods);
157 res = RegSetValueExW(key, NULL, 0, REG_SZ,
159 (lstrlenW(buf) + 1) * sizeof(WCHAR));
162 if (res != ERROR_SUCCESS) goto error_close_iid_key;
165 if (list->ps_clsid) {
166 res = register_key_guid(iid_key, ps_clsid_keyname, list->ps_clsid);
167 if (res != ERROR_SUCCESS) goto error_close_iid_key;
170 if (list->ps_clsid32) {
171 res = register_key_guid(iid_key, ps_clsid32_keyname, list->ps_clsid32);
172 if (res != ERROR_SUCCESS) goto error_close_iid_key;
176 RegCloseKey(iid_key);
179 error_close_interface_key:
180 RegCloseKey(interface_key);
182 return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
185 /***********************************************************************
186 * unregister_interfaces
188 static HRESULT unregister_interfaces(struct regsvr_interface const *list)
190 LONG res = ERROR_SUCCESS;
193 res = RegOpenKeyExW(HKEY_CLASSES_ROOT, interface_keyname, 0,
194 KEY_READ | KEY_WRITE, &interface_key);
195 if (res == ERROR_FILE_NOT_FOUND) return S_OK;
196 if (res != ERROR_SUCCESS) goto error_return;
198 for (; res == ERROR_SUCCESS && list->iid; ++list) {
201 StringFromGUID2(list->iid, buf, 39);
202 res = recursive_delete_keyW(interface_key, buf);
205 RegCloseKey(interface_key);
207 return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
210 /***********************************************************************
213 static HRESULT register_coclasses(struct regsvr_coclass const *list)
215 LONG res = ERROR_SUCCESS;
218 res = RegCreateKeyExW(HKEY_CLASSES_ROOT, clsid_keyname, 0, NULL, 0,
219 KEY_READ | KEY_WRITE, NULL, &coclass_key, NULL);
220 if (res != ERROR_SUCCESS) goto error_return;
222 for (; res == ERROR_SUCCESS && list->clsid; ++list) {
226 StringFromGUID2(list->clsid, buf, 39);
227 res = RegCreateKeyExW(coclass_key, buf, 0, NULL, 0,
228 KEY_READ | KEY_WRITE, NULL, &clsid_key, NULL);
229 if (res != ERROR_SUCCESS) goto error_close_coclass_key;
232 res = RegSetValueExA(clsid_key, NULL, 0, REG_SZ,
233 (CONST BYTE*)(list->name),
234 strlen(list->name) + 1);
235 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
239 res = register_key_defvalueA(clsid_key, ips_keyname, list->ips);
240 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
246 res = RegCreateKeyExW(clsid_key, ips32_keyname, 0, NULL, 0,
247 KEY_READ | KEY_WRITE, NULL,
249 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
251 res = RegSetValueExA(ips32_key, NULL, 0, REG_SZ,
252 (CONST BYTE*)list->ips32,
253 lstrlenA(list->ips32) + 1);
254 if (res == ERROR_SUCCESS && list->ips32_tmodel)
255 res = RegSetValueExA(ips32_key, tmodel_valuename, 0, REG_SZ,
256 (CONST BYTE*)list->ips32_tmodel,
257 strlen(list->ips32_tmodel) + 1);
258 RegCloseKey(ips32_key);
259 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
262 if (list->clsid_str) {
263 res = register_key_defvalueA(clsid_key, clsid_keyname,
265 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
271 res = register_key_defvalueA(clsid_key, progid_keyname,
273 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
275 res = RegCreateKeyExA(HKEY_CLASSES_ROOT, list->progid, 0,
276 NULL, 0, KEY_READ | KEY_WRITE, NULL,
278 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
280 res = register_key_defvalueW(progid_key, clsid_keyname, buf);
281 RegCloseKey(progid_key);
282 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
285 error_close_clsid_key:
286 RegCloseKey(clsid_key);
289 error_close_coclass_key:
290 RegCloseKey(coclass_key);
292 return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
295 /***********************************************************************
296 * unregister_coclasses
298 static HRESULT unregister_coclasses(struct regsvr_coclass const *list)
300 LONG res = ERROR_SUCCESS;
303 res = RegOpenKeyExW(HKEY_CLASSES_ROOT, clsid_keyname, 0,
304 KEY_READ | KEY_WRITE, &coclass_key);
305 if (res == ERROR_FILE_NOT_FOUND) return S_OK;
306 if (res != ERROR_SUCCESS) goto error_return;
308 for (; res == ERROR_SUCCESS && list->clsid; ++list) {
311 StringFromGUID2(list->clsid, buf, 39);
312 res = recursive_delete_keyW(coclass_key, buf);
313 if (res != ERROR_SUCCESS) goto error_close_coclass_key;
316 res = recursive_delete_keyA(HKEY_CLASSES_ROOT, list->progid);
317 if (res != ERROR_SUCCESS) goto error_close_coclass_key;
321 error_close_coclass_key:
322 RegCloseKey(coclass_key);
324 return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
327 /***********************************************************************
330 static LONG register_key_guid(HKEY base, WCHAR const *name, GUID const *guid)
334 StringFromGUID2(guid, buf, 39);
335 return register_key_defvalueW(base, name, buf);
338 /***********************************************************************
339 * regsvr_key_defvalueW
341 static LONG register_key_defvalueW(
349 res = RegCreateKeyExW(base, name, 0, NULL, 0,
350 KEY_READ | KEY_WRITE, NULL, &key, NULL);
351 if (res != ERROR_SUCCESS) return res;
352 res = RegSetValueExW(key, NULL, 0, REG_SZ, (CONST BYTE*)value,
353 (lstrlenW(value) + 1) * sizeof(WCHAR));
358 /***********************************************************************
359 * regsvr_key_defvalueA
361 static LONG register_key_defvalueA(
369 res = RegCreateKeyExW(base, name, 0, NULL, 0,
370 KEY_READ | KEY_WRITE, NULL, &key, NULL);
371 if (res != ERROR_SUCCESS) return res;
372 res = RegSetValueExA(key, NULL, 0, REG_SZ, (CONST BYTE*)value,
373 lstrlenA(value) + 1);
378 /***********************************************************************
379 * recursive_delete_key
381 static LONG recursive_delete_key(HKEY key)
384 WCHAR subkey_name[MAX_PATH];
389 cName = sizeof(subkey_name) / sizeof(WCHAR);
390 res = RegEnumKeyExW(key, 0, subkey_name, &cName,
391 NULL, NULL, NULL, NULL);
392 if (res != ERROR_SUCCESS && res != ERROR_MORE_DATA) {
393 res = ERROR_SUCCESS; /* presumably we're done enumerating */
396 res = RegOpenKeyExW(key, subkey_name, 0,
397 KEY_READ | KEY_WRITE, &subkey);
398 if (res == ERROR_FILE_NOT_FOUND) continue;
399 if (res != ERROR_SUCCESS) break;
401 res = recursive_delete_key(subkey);
403 if (res != ERROR_SUCCESS) break;
406 if (res == ERROR_SUCCESS) res = RegDeleteKeyW(key, 0);
410 /***********************************************************************
411 * recursive_delete_keyA
413 static LONG recursive_delete_keyA(HKEY base, char const *name)
418 res = RegOpenKeyExA(base, name, 0, KEY_READ | KEY_WRITE, &key);
419 if (res == ERROR_FILE_NOT_FOUND) return ERROR_SUCCESS;
420 if (res != ERROR_SUCCESS) return res;
421 res = recursive_delete_key(key);
426 /***********************************************************************
427 * recursive_delete_keyW
429 static LONG recursive_delete_keyW(HKEY base, WCHAR const *name)
434 res = RegOpenKeyExW(base, name, 0, KEY_READ | KEY_WRITE, &key);
435 if (res == ERROR_FILE_NOT_FOUND) return ERROR_SUCCESS;
436 if (res != ERROR_SUCCESS) return res;
437 res = recursive_delete_key(key);
442 /***********************************************************************
445 static GUID const CLSID_RecordInfo = {
446 0x0000002F, 0x0000, 0x0000, {0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46} };
448 static GUID const CLSID_OldFont = {
449 0x46763EE0, 0xCAB2, 0x11CE, {0x8C,0x20,0x00,0xAA,0x00,0x51,0xE5,0xD4} };
451 static GUID const CLSID_PSFactoryBuffer = {
452 0xB196B286, 0xBAB4, 0x101A, {0xB6,0x9C,0x00,0xAA,0x00,0x34,0x1D,0x07} };
454 static struct regsvr_coclass const coclass_list[] = {
483 { &CLSID_PSEnumVariant,
501 { &CLSID_PSOAInterface,
521 { &CLSID_PSFactoryBuffer,
527 { NULL } /* list terminator */
530 /***********************************************************************
533 static struct regsvr_interface const interface_list[] = {
566 &CLSID_PSEnumVariant,
569 { &IID_ICreateTypeInfo,
576 { &IID_ICreateTypeLib,
597 { &IID_IPropertyPage2,
602 &CLSID_PSFactoryBuffer
609 &CLSID_PSFactoryBuffer
611 { &IID_ICreateErrorInfo,
616 &CLSID_PSFactoryBuffer
618 { &IID_IPersistPropertyBag2,
619 "IPersistPropertyBag2",
623 &CLSID_PSFactoryBuffer
625 { &IID_IPropertyBag2,
630 &CLSID_PSFactoryBuffer
637 &CLSID_PSFactoryBuffer
639 { &IID_IPerPropertyBrowsing,
640 "IPerPropertyBrowsing",
644 &CLSID_PSFactoryBuffer
646 { &IID_IPersistPropertyBag,
647 "IPersistPropertyBag",
651 &CLSID_PSFactoryBuffer
653 { &IID_IAdviseSinkEx,
658 &CLSID_PSFactoryBuffer
660 { &IID_IFontEventsDisp,
665 &CLSID_PSFactoryBuffer
672 &CLSID_PSFactoryBuffer
674 { &IID_IPointerInactive,
679 &CLSID_PSFactoryBuffer
681 { &IID_ISimpleFrameSite,
686 &CLSID_PSFactoryBuffer
693 &CLSID_PSFactoryBuffer
700 &CLSID_PSFactoryBuffer
702 { &IID_IPersistStreamInit,
703 "IPersistStreamInit",
707 &CLSID_PSFactoryBuffer
714 &CLSID_PSFactoryBuffer
716 { &IID_IPropertyNotifySink,
717 "IPropertyNotifySink",
721 &CLSID_PSFactoryBuffer
723 { &IID_IOleInPlaceSiteEx,
728 &CLSID_PSFactoryBuffer
730 { &IID_IOleParentUndoUnit,
731 "IOleParentUndoUnit",
735 &CLSID_PSFactoryBuffer
737 { &IID_IProvideClassInfo2,
738 "IProvideClassInfo2",
742 &CLSID_PSFactoryBuffer
744 { &IID_IProvideMultipleClassInfo,
745 "IProvideMultipleClassInfo",
749 &CLSID_PSFactoryBuffer
751 { &IID_IProvideClassInfo,
756 &CLSID_PSFactoryBuffer
758 { &IID_IConnectionPointContainer,
759 "IConnectionPointContainer",
763 &CLSID_PSFactoryBuffer
765 { &IID_IEnumConnectionPoints,
766 "IEnumConnectionPoints",
770 &CLSID_PSFactoryBuffer
772 { &IID_IConnectionPoint,
777 &CLSID_PSFactoryBuffer
779 { &IID_IEnumConnections,
784 &CLSID_PSFactoryBuffer
791 &CLSID_PSFactoryBuffer
793 { &IID_IOleControlSite,
798 &CLSID_PSFactoryBuffer
800 { &IID_ISpecifyPropertyPages,
801 "ISpecifyPropertyPages",
805 &CLSID_PSFactoryBuffer
807 { &IID_IPropertyPageSite,
812 &CLSID_PSFactoryBuffer
814 { &IID_IPropertyPage,
819 &CLSID_PSFactoryBuffer
821 { &IID_IClassFactory2,
826 &CLSID_PSFactoryBuffer
828 { &IID_IEnumOleUndoUnits,
833 &CLSID_PSFactoryBuffer
835 { &IID_IPersistMemory,
840 &CLSID_PSFactoryBuffer
847 &CLSID_PSFactoryBuffer
854 &CLSID_PSFactoryBuffer
856 { &IID_IQuickActivate,
861 &CLSID_PSFactoryBuffer
863 { &IID_IOleUndoManager,
868 &CLSID_PSFactoryBuffer
870 { &IID_IObjectWithSite,
875 &CLSID_PSFactoryBuffer
877 { NULL } /* list terminator */
880 /***********************************************************************
881 * DllRegisterServer (OLEAUT32.@)
883 HRESULT WINAPI DllRegisterServer(void)
889 hr = register_coclasses(coclass_list);
891 hr = register_interfaces(interface_list);
895 /***********************************************************************
896 * DllUnregisterServer (OLEAUT32.@)
898 HRESULT WINAPI DllUnregisterServer(void)
904 hr = unregister_coclasses(coclass_list);
906 hr = unregister_interfaces(interface_list);