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"
37 #include "wine/unicode.h"
39 WINE_DEFAULT_DEBUG_CHANNEL(ole
);
42 * Near the bottom of this file are the exported DllRegisterServer and
43 * DllUnregisterServer, which make all this worthwhile.
46 /***********************************************************************
47 * interface for self-registering
49 struct regsvr_interface
51 IID
const *iid
; /* NULL for end of list */
52 LPCSTR name
; /* can be NULL to omit */
53 IID
const *base_iid
; /* can be NULL to omit */
54 int num_methods
; /* can be <0 to omit */
55 CLSID
const *ps_clsid
; /* can be NULL to omit */
56 CLSID
const *ps_clsid32
; /* can be NULL to omit */
59 static HRESULT
register_interfaces(struct regsvr_interface
const *list
);
60 static HRESULT
unregister_interfaces(struct regsvr_interface
const *list
);
64 CLSID
const *clsid
; /* NULL for end of list */
65 LPCSTR name
; /* can be NULL to omit */
66 LPCSTR ips
; /* can be NULL to omit */
67 LPCSTR ips32
; /* can be NULL to omit */
68 LPCSTR ips32_tmodel
; /* can be NULL to omit */
69 LPCSTR clsid_str
; /* can be NULL to omit */
70 LPCSTR progid
; /* can be NULL to omit */
73 static HRESULT
register_coclasses(struct regsvr_coclass
const *list
);
74 static HRESULT
unregister_coclasses(struct regsvr_coclass
const *list
);
76 /***********************************************************************
77 * static string constants
79 static WCHAR
const interface_keyname
[10] = {
80 'I', 'n', 't', 'e', 'r', 'f', 'a', 'c', 'e', 0 };
81 static WCHAR
const base_ifa_keyname
[14] = {
82 'B', 'a', 's', 'e', 'I', 'n', 't', 'e', 'r', 'f', 'a', 'c',
84 static WCHAR
const num_methods_keyname
[11] = {
85 'N', 'u', 'm', 'M', 'e', 't', 'h', 'o', 'd', 's', 0 };
86 static WCHAR
const ps_clsid_keyname
[15] = {
87 'P', 'r', 'o', 'x', 'y', 'S', 't', 'u', 'b', 'C', 'l', 's',
89 static WCHAR
const ps_clsid32_keyname
[17] = {
90 'P', 'r', 'o', 'x', 'y', 'S', 't', 'u', 'b', 'C', 'l', 's',
91 'i', 'd', '3', '2', 0 };
92 static WCHAR
const clsid_keyname
[6] = {
93 'C', 'L', 'S', 'I', 'D', 0 };
94 static WCHAR
const ips_keyname
[13] = {
95 'I', 'n', 'P', 'r', 'o', 'c', 'S', 'e', 'r', 'v', 'e', 'r',
97 static WCHAR
const ips32_keyname
[15] = {
98 'I', 'n', 'P', 'r', 'o', 'c', 'S', 'e', 'r', 'v', 'e', 'r',
100 static WCHAR
const progid_keyname
[7] = {
101 'P', 'r', 'o', 'g', 'I', 'D', 0 };
102 static char const tmodel_valuename
[] = "ThreadingModel";
104 /***********************************************************************
105 * static helper functions
107 static LONG
register_key_guid(HKEY base
, WCHAR
const *name
, GUID
const *guid
);
108 static LONG
register_key_defvalueW(HKEY base
, WCHAR
const *name
,
110 static LONG
register_key_defvalueA(HKEY base
, WCHAR
const *name
,
113 /***********************************************************************
114 * register_interfaces
116 static HRESULT
register_interfaces(struct regsvr_interface
const *list
)
118 LONG res
= ERROR_SUCCESS
;
121 res
= RegCreateKeyExW(HKEY_CLASSES_ROOT
, interface_keyname
, 0, NULL
, 0,
122 KEY_READ
| KEY_WRITE
, NULL
, &interface_key
, NULL
);
123 if (res
!= ERROR_SUCCESS
) goto error_return
;
125 for (; res
== ERROR_SUCCESS
&& list
->iid
; ++list
) {
129 StringFromGUID2(list
->iid
, buf
, 39);
130 res
= RegCreateKeyExW(interface_key
, buf
, 0, NULL
, 0,
131 KEY_READ
| KEY_WRITE
, NULL
, &iid_key
, NULL
);
132 if (res
!= ERROR_SUCCESS
) goto error_close_interface_key
;
135 res
= RegSetValueExA(iid_key
, NULL
, 0, REG_SZ
,
136 (CONST BYTE
*)(list
->name
),
137 strlen(list
->name
) + 1);
138 if (res
!= ERROR_SUCCESS
) goto error_close_iid_key
;
141 if (list
->base_iid
) {
142 res
= register_key_guid(iid_key
, base_ifa_keyname
, list
->base_iid
);
143 if (res
!= ERROR_SUCCESS
) goto error_close_iid_key
;
146 if (0 <= list
->num_methods
) {
147 static WCHAR
const fmt
[3] = { '%', 'd', 0 };
150 res
= RegCreateKeyExW(iid_key
, num_methods_keyname
, 0, NULL
, 0,
151 KEY_READ
| KEY_WRITE
, NULL
, &key
, NULL
);
152 if (res
!= ERROR_SUCCESS
) goto error_close_iid_key
;
154 sprintfW(buf
, fmt
, list
->num_methods
);
155 res
= RegSetValueExW(key
, NULL
, 0, REG_SZ
,
157 (lstrlenW(buf
) + 1) * sizeof(WCHAR
));
160 if (res
!= ERROR_SUCCESS
) goto error_close_iid_key
;
163 if (list
->ps_clsid
) {
164 res
= register_key_guid(iid_key
, ps_clsid_keyname
, list
->ps_clsid
);
165 if (res
!= ERROR_SUCCESS
) goto error_close_iid_key
;
168 if (list
->ps_clsid32
) {
169 res
= register_key_guid(iid_key
, ps_clsid32_keyname
, list
->ps_clsid32
);
170 if (res
!= ERROR_SUCCESS
) goto error_close_iid_key
;
174 RegCloseKey(iid_key
);
177 error_close_interface_key
:
178 RegCloseKey(interface_key
);
180 return res
!= ERROR_SUCCESS
? HRESULT_FROM_WIN32(res
) : S_OK
;
183 /***********************************************************************
184 * unregister_interfaces
186 static HRESULT
unregister_interfaces(struct regsvr_interface
const *list
)
188 LONG res
= ERROR_SUCCESS
;
191 res
= RegOpenKeyExW(HKEY_CLASSES_ROOT
, interface_keyname
, 0,
192 KEY_READ
| KEY_WRITE
, &interface_key
);
193 if (res
== ERROR_FILE_NOT_FOUND
) return S_OK
;
194 if (res
!= ERROR_SUCCESS
) goto error_return
;
196 for (; res
== ERROR_SUCCESS
&& list
->iid
; ++list
) {
199 StringFromGUID2(list
->iid
, buf
, 39);
200 res
= RegDeleteTreeW(interface_key
, buf
);
201 if (res
== ERROR_FILE_NOT_FOUND
) res
= ERROR_SUCCESS
;
204 RegCloseKey(interface_key
);
206 return res
!= ERROR_SUCCESS
? HRESULT_FROM_WIN32(res
) : S_OK
;
209 /***********************************************************************
212 static HRESULT
register_coclasses(struct regsvr_coclass
const *list
)
214 LONG res
= ERROR_SUCCESS
;
217 res
= RegCreateKeyExW(HKEY_CLASSES_ROOT
, clsid_keyname
, 0, NULL
, 0,
218 KEY_READ
| KEY_WRITE
, NULL
, &coclass_key
, NULL
);
219 if (res
!= ERROR_SUCCESS
) goto error_return
;
221 for (; res
== ERROR_SUCCESS
&& list
->clsid
; ++list
) {
225 StringFromGUID2(list
->clsid
, buf
, 39);
226 res
= RegCreateKeyExW(coclass_key
, buf
, 0, NULL
, 0,
227 KEY_READ
| KEY_WRITE
, NULL
, &clsid_key
, NULL
);
228 if (res
!= ERROR_SUCCESS
) goto error_close_coclass_key
;
231 res
= RegSetValueExA(clsid_key
, NULL
, 0, REG_SZ
,
232 (CONST BYTE
*)(list
->name
),
233 strlen(list
->name
) + 1);
234 if (res
!= ERROR_SUCCESS
) goto error_close_clsid_key
;
238 res
= register_key_defvalueA(clsid_key
, ips_keyname
, list
->ips
);
239 if (res
!= ERROR_SUCCESS
) goto error_close_clsid_key
;
245 res
= RegCreateKeyExW(clsid_key
, ips32_keyname
, 0, NULL
, 0,
246 KEY_READ
| KEY_WRITE
, NULL
,
248 if (res
!= ERROR_SUCCESS
) goto error_close_clsid_key
;
250 res
= RegSetValueExA(ips32_key
, NULL
, 0, REG_SZ
,
251 (CONST BYTE
*)list
->ips32
,
252 lstrlenA(list
->ips32
) + 1);
253 if (res
== ERROR_SUCCESS
&& list
->ips32_tmodel
)
254 res
= RegSetValueExA(ips32_key
, tmodel_valuename
, 0, REG_SZ
,
255 (CONST BYTE
*)list
->ips32_tmodel
,
256 strlen(list
->ips32_tmodel
) + 1);
257 RegCloseKey(ips32_key
);
258 if (res
!= ERROR_SUCCESS
) goto error_close_clsid_key
;
261 if (list
->clsid_str
) {
262 res
= register_key_defvalueA(clsid_key
, clsid_keyname
,
264 if (res
!= ERROR_SUCCESS
) goto error_close_clsid_key
;
270 res
= register_key_defvalueA(clsid_key
, progid_keyname
,
272 if (res
!= ERROR_SUCCESS
) goto error_close_clsid_key
;
274 res
= RegCreateKeyExA(HKEY_CLASSES_ROOT
, list
->progid
, 0,
275 NULL
, 0, KEY_READ
| KEY_WRITE
, NULL
,
277 if (res
!= ERROR_SUCCESS
) goto error_close_clsid_key
;
279 res
= register_key_defvalueW(progid_key
, clsid_keyname
, buf
);
280 RegCloseKey(progid_key
);
281 if (res
!= ERROR_SUCCESS
) goto error_close_clsid_key
;
284 error_close_clsid_key
:
285 RegCloseKey(clsid_key
);
288 error_close_coclass_key
:
289 RegCloseKey(coclass_key
);
291 return res
!= ERROR_SUCCESS
? HRESULT_FROM_WIN32(res
) : S_OK
;
294 /***********************************************************************
295 * unregister_coclasses
297 static HRESULT
unregister_coclasses(struct regsvr_coclass
const *list
)
299 LONG res
= ERROR_SUCCESS
;
302 res
= RegOpenKeyExW(HKEY_CLASSES_ROOT
, clsid_keyname
, 0,
303 KEY_READ
| KEY_WRITE
, &coclass_key
);
304 if (res
== ERROR_FILE_NOT_FOUND
) return S_OK
;
305 if (res
!= ERROR_SUCCESS
) goto error_return
;
307 for (; res
== ERROR_SUCCESS
&& list
->clsid
; ++list
) {
310 StringFromGUID2(list
->clsid
, buf
, 39);
311 res
= RegDeleteTreeW(coclass_key
, buf
);
312 if (res
== ERROR_FILE_NOT_FOUND
) res
= ERROR_SUCCESS
;
313 if (res
!= ERROR_SUCCESS
) goto error_close_coclass_key
;
316 res
= RegDeleteTreeA(HKEY_CLASSES_ROOT
, list
->progid
);
317 if (res
== ERROR_FILE_NOT_FOUND
) res
= ERROR_SUCCESS
;
318 if (res
!= ERROR_SUCCESS
) goto error_close_coclass_key
;
322 error_close_coclass_key
:
323 RegCloseKey(coclass_key
);
325 return res
!= ERROR_SUCCESS
? HRESULT_FROM_WIN32(res
) : S_OK
;
328 /***********************************************************************
331 static LONG
register_key_guid(HKEY base
, WCHAR
const *name
, GUID
const *guid
)
335 StringFromGUID2(guid
, buf
, 39);
336 return register_key_defvalueW(base
, name
, buf
);
339 /***********************************************************************
340 * regsvr_key_defvalueW
342 static LONG
register_key_defvalueW(
350 res
= RegCreateKeyExW(base
, name
, 0, NULL
, 0,
351 KEY_READ
| KEY_WRITE
, NULL
, &key
, NULL
);
352 if (res
!= ERROR_SUCCESS
) return res
;
353 res
= RegSetValueExW(key
, NULL
, 0, REG_SZ
, (CONST BYTE
*)value
,
354 (lstrlenW(value
) + 1) * sizeof(WCHAR
));
359 /***********************************************************************
360 * regsvr_key_defvalueA
362 static LONG
register_key_defvalueA(
370 res
= RegCreateKeyExW(base
, name
, 0, NULL
, 0,
371 KEY_READ
| KEY_WRITE
, NULL
, &key
, NULL
);
372 if (res
!= ERROR_SUCCESS
) return res
;
373 res
= RegSetValueExA(key
, NULL
, 0, REG_SZ
, (CONST BYTE
*)value
,
374 lstrlenA(value
) + 1);
379 /***********************************************************************
382 static GUID
const CLSID_RecordInfo
= {
383 0x0000002F, 0x0000, 0x0000, {0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46} };
385 static GUID
const CLSID_OldFont
= {
386 0x46763EE0, 0xCAB2, 0x11CE, {0x8C,0x20,0x00,0xAA,0x00,0x51,0xE5,0xD4} };
388 static GUID
const CLSID_PSFactoryBuffer
= {
389 0xB196B286, 0xBAB4, 0x101A, {0xB6,0x9C,0x00,0xAA,0x00,0x34,0x1D,0x07} };
391 static struct regsvr_coclass
const coclass_list
[] = {
420 { &CLSID_PSEnumVariant
,
438 { &CLSID_PSOAInterface
,
458 { &CLSID_PSFactoryBuffer
,
464 { NULL
} /* list terminator */
467 /***********************************************************************
470 #define INTERFACE_ENTRY(interface, clsid16, clsid32) { &IID_##interface, #interface, NULL, sizeof(interface##Vtbl)/sizeof(void*), clsid16, clsid32 }
471 #define LCL_INTERFACE_ENTRY(interface) INTERFACE_ENTRY(interface, NULL, NULL)
472 #define PSFAC_INTERFACE_ENTRY(interface) INTERFACE_ENTRY(interface, NULL, &CLSID_PSFactoryBuffer)
473 #define CLSID_INTERFACE_ENTRY(interface,clsid) INTERFACE_ENTRY(interface, clsid, clsid)
475 static struct regsvr_interface
const interface_list
[] = {
476 LCL_INTERFACE_ENTRY(ICreateTypeInfo
),
477 LCL_INTERFACE_ENTRY(ICreateTypeLib
),
478 CLSID_INTERFACE_ENTRY(IDispatch
,&CLSID_PSDispatch
),
479 CLSID_INTERFACE_ENTRY(IEnumVARIANT
,&CLSID_PSEnumVariant
),
480 CLSID_INTERFACE_ENTRY(ITypeComp
,&CLSID_PSTypeComp
),
481 CLSID_INTERFACE_ENTRY(ITypeInfo
,&CLSID_PSTypeInfo
),
482 CLSID_INTERFACE_ENTRY(ITypeLib
,&CLSID_PSTypeLib
),
483 PSFAC_INTERFACE_ENTRY(IAdviseSinkEx
),
484 PSFAC_INTERFACE_ENTRY(IClassFactory2
),
485 PSFAC_INTERFACE_ENTRY(IConnectionPoint
),
486 PSFAC_INTERFACE_ENTRY(IConnectionPointContainer
),
487 PSFAC_INTERFACE_ENTRY(ICreateErrorInfo
),
488 PSFAC_INTERFACE_ENTRY(IEnumConnectionPoints
),
489 PSFAC_INTERFACE_ENTRY(IEnumConnections
),
490 PSFAC_INTERFACE_ENTRY(IEnumOleUndoUnits
),
491 PSFAC_INTERFACE_ENTRY(IErrorInfo
),
492 PSFAC_INTERFACE_ENTRY(IErrorLog
),
493 PSFAC_INTERFACE_ENTRY(IFont
),
494 PSFAC_INTERFACE_ENTRY(IObjectWithSite
),
495 PSFAC_INTERFACE_ENTRY(IOleControl
),
496 PSFAC_INTERFACE_ENTRY(IOleControlSite
),
497 PSFAC_INTERFACE_ENTRY(IOleInPlaceSiteEx
),
498 PSFAC_INTERFACE_ENTRY(IOleParentUndoUnit
),
499 PSFAC_INTERFACE_ENTRY(IOleUndoManager
),
500 PSFAC_INTERFACE_ENTRY(IOleUndoUnit
),
501 PSFAC_INTERFACE_ENTRY(IPerPropertyBrowsing
),
502 PSFAC_INTERFACE_ENTRY(IPersistMemory
),
503 PSFAC_INTERFACE_ENTRY(IPersistPropertyBag
),
504 PSFAC_INTERFACE_ENTRY(IPersistPropertyBag2
),
505 PSFAC_INTERFACE_ENTRY(IPersistStreamInit
),
506 PSFAC_INTERFACE_ENTRY(IPicture
),
507 PSFAC_INTERFACE_ENTRY(IPointerInactive
),
508 PSFAC_INTERFACE_ENTRY(IPropertyBag
),
509 PSFAC_INTERFACE_ENTRY(IPropertyBag2
),
510 PSFAC_INTERFACE_ENTRY(IPropertyNotifySink
),
511 PSFAC_INTERFACE_ENTRY(IPropertyPage
),
512 PSFAC_INTERFACE_ENTRY(IPropertyPage2
),
513 PSFAC_INTERFACE_ENTRY(IPropertyPageSite
),
514 PSFAC_INTERFACE_ENTRY(IProvideClassInfo
),
515 PSFAC_INTERFACE_ENTRY(IProvideClassInfo2
),
516 PSFAC_INTERFACE_ENTRY(IProvideMultipleClassInfo
),
517 PSFAC_INTERFACE_ENTRY(IQuickActivate
),
518 PSFAC_INTERFACE_ENTRY(ISimpleFrameSite
),
519 PSFAC_INTERFACE_ENTRY(ISpecifyPropertyPages
),
520 { NULL
} /* list terminator */
523 extern HRESULT WINAPI
OLEAUTPS_DllRegisterServer(void) DECLSPEC_HIDDEN
;
524 extern HRESULT WINAPI
OLEAUTPS_DllUnregisterServer(void) DECLSPEC_HIDDEN
;
526 /***********************************************************************
527 * DllRegisterServer (OLEAUT32.@)
529 HRESULT WINAPI
DllRegisterServer(void)
535 hr
= OLEAUTPS_DllRegisterServer();
537 hr
= register_coclasses(coclass_list
);
539 hr
= register_interfaces(interface_list
);
543 /***********************************************************************
544 * DllUnregisterServer (OLEAUT32.@)
546 HRESULT WINAPI
DllUnregisterServer(void)
552 hr
= unregister_coclasses(coclass_list
);
554 hr
= unregister_interfaces(interface_list
);
556 hr
= OLEAUTPS_DllUnregisterServer();