dbghelp: Sparse array speed up.
[wine/wine-kai.git] / dlls / oleaut32 / regsvr.c
blobb1dd71401347cd6e341a7dd30ee9f12567f22fc7
1 /*
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
21 #include <stdarg.h>
22 #include <string.h>
24 #include "windef.h"
25 #include "winbase.h"
26 #include "winuser.h"
27 #include "winreg.h"
28 #include "winerror.h"
30 #include "ole2.h"
31 #include "olectl.h"
32 #include "oleauto.h"
33 #include "initguid.h"
34 #include "typelib.h"
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);
61 struct regsvr_coclass
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',
82 'e', 0 };
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',
87 'i', 'd', 0 };
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',
95 0 };
96 static WCHAR const ips32_keyname[15] = {
97 'I', 'n', 'P', 'r', 'o', 'c', 'S', 'e', 'r', 'v', 'e', 'r',
98 '3', '2', 0 };
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,
108 WCHAR const *value);
109 static LONG register_key_defvalueA(HKEY base, WCHAR const *name,
110 char const *value);
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;
121 HKEY interface_key;
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) {
128 WCHAR buf[39];
129 HKEY iid_key;
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;
136 if (list->name) {
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 };
150 HKEY key;
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,
158 (CONST BYTE*)buf,
159 (lstrlenW(buf) + 1) * sizeof(WCHAR));
160 RegCloseKey(key);
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;
175 error_close_iid_key:
176 RegCloseKey(iid_key);
179 error_close_interface_key:
180 RegCloseKey(interface_key);
181 error_return:
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;
191 HKEY interface_key;
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) {
199 WCHAR buf[39];
201 StringFromGUID2(list->iid, buf, 39);
202 res = recursive_delete_keyW(interface_key, buf);
205 RegCloseKey(interface_key);
206 error_return:
207 return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
210 /***********************************************************************
211 * register_coclasses
213 static HRESULT register_coclasses(struct regsvr_coclass const *list)
215 LONG res = ERROR_SUCCESS;
216 HKEY coclass_key;
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) {
223 WCHAR buf[39];
224 HKEY clsid_key;
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;
231 if (list->name) {
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;
238 if (list->ips) {
239 res = register_key_defvalueA(clsid_key, ips_keyname, list->ips);
240 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
243 if (list->ips32) {
244 HKEY ips32_key;
246 res = RegCreateKeyExW(clsid_key, ips32_keyname, 0, NULL, 0,
247 KEY_READ | KEY_WRITE, NULL,
248 &ips32_key, 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,
264 list->clsid_str);
265 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
268 if (list->progid) {
269 HKEY progid_key;
271 res = register_key_defvalueA(clsid_key, progid_keyname,
272 list->progid);
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,
277 &progid_key, 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);
291 error_return:
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;
301 HKEY coclass_key;
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) {
309 WCHAR buf[39];
311 StringFromGUID2(list->clsid, buf, 39);
312 res = recursive_delete_keyW(coclass_key, buf);
313 if (res != ERROR_SUCCESS) goto error_close_coclass_key;
315 if (list->progid) {
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);
323 error_return:
324 return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
327 /***********************************************************************
328 * regsvr_key_guid
330 static LONG register_key_guid(HKEY base, WCHAR const *name, GUID const *guid)
332 WCHAR buf[39];
334 StringFromGUID2(guid, buf, 39);
335 return register_key_defvalueW(base, name, buf);
338 /***********************************************************************
339 * regsvr_key_defvalueW
341 static LONG register_key_defvalueW(
342 HKEY base,
343 WCHAR const *name,
344 WCHAR const *value)
346 LONG res;
347 HKEY key;
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));
354 RegCloseKey(key);
355 return res;
358 /***********************************************************************
359 * regsvr_key_defvalueA
361 static LONG register_key_defvalueA(
362 HKEY base,
363 WCHAR const *name,
364 char const *value)
366 LONG res;
367 HKEY key;
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);
374 RegCloseKey(key);
375 return res;
378 /***********************************************************************
379 * recursive_delete_key
381 static LONG recursive_delete_key(HKEY key)
383 LONG res;
384 WCHAR subkey_name[MAX_PATH];
385 DWORD cName;
386 HKEY subkey;
388 for (;;) {
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 */
394 break;
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);
402 RegCloseKey(subkey);
403 if (res != ERROR_SUCCESS) break;
406 if (res == ERROR_SUCCESS) res = RegDeleteKeyW(key, 0);
407 return res;
410 /***********************************************************************
411 * recursive_delete_keyA
413 static LONG recursive_delete_keyA(HKEY base, char const *name)
415 LONG res;
416 HKEY key;
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);
422 RegCloseKey(key);
423 return res;
426 /***********************************************************************
427 * recursive_delete_keyW
429 static LONG recursive_delete_keyW(HKEY base, WCHAR const *name)
431 LONG res;
432 HKEY key;
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);
438 RegCloseKey(key);
439 return res;
442 /***********************************************************************
443 * coclass list
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[] = {
455 { &CLSID_RecordInfo,
456 "CLSID_RecordInfo",
457 NULL,
458 "oleaut32.dll",
459 "Both"
461 { &CLSID_PSDispatch,
462 "PSDispatch",
463 "ole2disp.dll",
464 "oleaut32.dll",
465 "Both"
467 { &CLSID_StdFont,
468 "CLSID_StdFont",
469 NULL,
470 "oleaut32.dll",
471 "Both",
472 "Standard Font",
473 "StdFont"
475 { &CLSID_StdPicture,
476 "CLSID_StdPict",
477 NULL,
478 "oleaut32.dll",
479 "Apartment",
480 "Standard Picture",
481 "StdPicture"
483 { &CLSID_PSEnumVariant,
484 "PSEnumVariant",
485 "ole2disp.dll",
486 "oleaut32.dll",
487 "Both"
489 { &CLSID_PSTypeInfo,
490 "PSTypeInfo",
491 "ole2disp.dll",
492 "oleaut32.dll",
493 "Both"
495 { &CLSID_PSTypeLib,
496 "PSTypeLib",
497 "ole2disp.dll",
498 "oleaut32.dll",
499 "Both"
501 { &CLSID_PSOAInterface,
502 "PSOAInterface",
503 "ole2disp.dll",
504 "oleaut32.dll",
505 "Both"
507 { &CLSID_PSTypeComp,
508 "PSTypeComp",
509 "ole2disp.dll",
510 "oleaut32.dll",
511 "Both"
513 { &CLSID_OldFont,
514 "Obsolete Font",
515 NULL,
516 "oleaut32.dll",
517 NULL,
518 "Obsolete Font",
519 "OldFont"
521 { &CLSID_PSFactoryBuffer,
522 "PSFactoryBuffer",
523 NULL,
524 "oleaut32.dll",
525 "Both"
527 { NULL } /* list terminator */
530 /***********************************************************************
531 * interface list
533 static struct regsvr_interface const interface_list[] = {
534 { &IID_IDispatch,
535 "IDispatch",
536 NULL,
538 &CLSID_PSDispatch,
539 &CLSID_PSDispatch
541 { &IID_ITypeInfo,
542 "ITypeInfo",
543 NULL,
545 &CLSID_PSTypeInfo,
546 &CLSID_PSTypeInfo
548 { &IID_ITypeLib,
549 "ITypeLib",
550 NULL,
552 &CLSID_PSTypeLib,
553 &CLSID_PSTypeLib
555 { &IID_ITypeComp,
556 "ITypeComp",
557 NULL,
559 &CLSID_PSTypeComp,
560 &CLSID_PSTypeComp
562 { &IID_IEnumVARIANT,
563 "IEnumVARIANT",
564 NULL,
566 &CLSID_PSEnumVariant,
567 &CLSID_PSEnumVariant
569 { &IID_ICreateTypeInfo,
570 "ICreateTypeInfo",
571 NULL,
573 NULL,
574 NULL
576 { &IID_ICreateTypeLib,
577 "ICreateTypeLib",
578 NULL,
580 NULL,
581 NULL
583 { &IID_ITypeInfo2,
584 "ITypeInfo2",
585 NULL,
587 NULL,
588 &CLSID_PSDispatch
590 { &IID_ITypeLib2,
591 "ITypeLib2",
592 NULL,
594 NULL,
595 &CLSID_PSDispatch
597 { &IID_IPropertyPage2,
598 "IPropertyPage2",
599 NULL,
601 NULL,
602 &CLSID_PSFactoryBuffer
604 { &IID_IErrorInfo,
605 "IErrorInfo",
606 NULL,
608 NULL,
609 &CLSID_PSFactoryBuffer
611 { &IID_ICreateErrorInfo,
612 "ICreateErrorInfo",
613 NULL,
615 NULL,
616 &CLSID_PSFactoryBuffer
618 { &IID_IPersistPropertyBag2,
619 "IPersistPropertyBag2",
620 NULL,
622 NULL,
623 &CLSID_PSFactoryBuffer
625 { &IID_IPropertyBag2,
626 "IPropertyBag2",
627 NULL,
629 NULL,
630 &CLSID_PSFactoryBuffer
632 { &IID_IErrorLog,
633 "IErrorLog",
634 NULL,
636 NULL,
637 &CLSID_PSFactoryBuffer
639 { &IID_IPerPropertyBrowsing,
640 "IPerPropertyBrowsing",
641 NULL,
643 NULL,
644 &CLSID_PSFactoryBuffer
646 { &IID_IPersistPropertyBag,
647 "IPersistPropertyBag",
648 NULL,
650 NULL,
651 &CLSID_PSFactoryBuffer
653 { &IID_IAdviseSinkEx,
654 "IAdviseSinkEx",
655 NULL,
657 NULL,
658 &CLSID_PSFactoryBuffer
660 { &IID_IFontEventsDisp,
661 "IFontEventsDisp",
662 NULL,
664 NULL,
665 &CLSID_PSFactoryBuffer
667 { &IID_IPropertyBag,
668 "IPropertyBag",
669 NULL,
671 NULL,
672 &CLSID_PSFactoryBuffer
674 { &IID_IPointerInactive,
675 "IPointerInactive",
676 NULL,
678 NULL,
679 &CLSID_PSFactoryBuffer
681 { &IID_ISimpleFrameSite,
682 "ISimpleFrameSite",
683 NULL,
685 NULL,
686 &CLSID_PSFactoryBuffer
688 { &IID_IPicture,
689 "IPicture",
690 NULL,
692 NULL,
693 &CLSID_PSFactoryBuffer
695 { &IID_IPictureDisp,
696 "IPictureDisp",
697 NULL,
699 NULL,
700 &CLSID_PSFactoryBuffer
702 { &IID_IPersistStreamInit,
703 "IPersistStreamInit",
704 NULL,
706 NULL,
707 &CLSID_PSFactoryBuffer
709 { &IID_IOleUndoUnit,
710 "IOleUndoUnit",
711 NULL,
713 NULL,
714 &CLSID_PSFactoryBuffer
716 { &IID_IPropertyNotifySink,
717 "IPropertyNotifySink",
718 NULL,
720 NULL,
721 &CLSID_PSFactoryBuffer
723 { &IID_IOleInPlaceSiteEx,
724 "IOleInPlaceSiteEx",
725 NULL,
727 NULL,
728 &CLSID_PSFactoryBuffer
730 { &IID_IOleParentUndoUnit,
731 "IOleParentUndoUnit",
732 NULL,
734 NULL,
735 &CLSID_PSFactoryBuffer
737 { &IID_IProvideClassInfo2,
738 "IProvideClassInfo2",
739 NULL,
741 NULL,
742 &CLSID_PSFactoryBuffer
744 { &IID_IProvideMultipleClassInfo,
745 "IProvideMultipleClassInfo",
746 NULL,
748 NULL,
749 &CLSID_PSFactoryBuffer
751 { &IID_IProvideClassInfo,
752 "IProvideClassInfo",
753 NULL,
755 NULL,
756 &CLSID_PSFactoryBuffer
758 { &IID_IConnectionPointContainer,
759 "IConnectionPointContainer",
760 NULL,
762 NULL,
763 &CLSID_PSFactoryBuffer
765 { &IID_IEnumConnectionPoints,
766 "IEnumConnectionPoints",
767 NULL,
769 NULL,
770 &CLSID_PSFactoryBuffer
772 { &IID_IConnectionPoint,
773 "IConnectionPoint",
774 NULL,
776 NULL,
777 &CLSID_PSFactoryBuffer
779 { &IID_IEnumConnections,
780 "IEnumConnections",
781 NULL,
783 NULL,
784 &CLSID_PSFactoryBuffer
786 { &IID_IOleControl,
787 "IOleControl",
788 NULL,
790 NULL,
791 &CLSID_PSFactoryBuffer
793 { &IID_IOleControlSite,
794 "IOleControlSite",
795 NULL,
797 NULL,
798 &CLSID_PSFactoryBuffer
800 { &IID_ISpecifyPropertyPages,
801 "ISpecifyPropertyPages",
802 NULL,
804 NULL,
805 &CLSID_PSFactoryBuffer
807 { &IID_IPropertyPageSite,
808 "IPropertyPageSite",
809 NULL,
811 NULL,
812 &CLSID_PSFactoryBuffer
814 { &IID_IPropertyPage,
815 "IPropertyPage",
816 NULL,
818 NULL,
819 &CLSID_PSFactoryBuffer
821 { &IID_IClassFactory2,
822 "IClassFactory2",
823 NULL,
825 NULL,
826 &CLSID_PSFactoryBuffer
828 { &IID_IEnumOleUndoUnits,
829 "IEnumOleUndoUnits",
830 NULL,
832 NULL,
833 &CLSID_PSFactoryBuffer
835 { &IID_IPersistMemory,
836 "IPersistMemory",
837 NULL,
839 NULL,
840 &CLSID_PSFactoryBuffer
842 { &IID_IFont,
843 "IFont",
844 NULL,
846 NULL,
847 &CLSID_PSFactoryBuffer
849 { &IID_IFontDisp,
850 "IFontDisp",
851 NULL,
853 NULL,
854 &CLSID_PSFactoryBuffer
856 { &IID_IQuickActivate,
857 "IQuickActivate",
858 NULL,
860 NULL,
861 &CLSID_PSFactoryBuffer
863 { &IID_IOleUndoManager,
864 "IOleUndoManager",
865 NULL,
867 NULL,
868 &CLSID_PSFactoryBuffer
870 { &IID_IObjectWithSite,
871 "IObjectWithSite",
872 NULL,
874 NULL,
875 &CLSID_PSFactoryBuffer
877 { NULL } /* list terminator */
880 /***********************************************************************
881 * DllRegisterServer (OLEAUT32.@)
883 HRESULT WINAPI DllRegisterServer(void)
885 HRESULT hr;
887 TRACE("\n");
889 hr = register_coclasses(coclass_list);
890 if (SUCCEEDED(hr))
891 hr = register_interfaces(interface_list);
892 return hr;
895 /***********************************************************************
896 * DllUnregisterServer (OLEAUT32.@)
898 HRESULT WINAPI DllUnregisterServer(void)
900 HRESULT hr;
902 TRACE("\n");
904 hr = unregister_coclasses(coclass_list);
905 if (SUCCEEDED(hr))
906 hr = unregister_interfaces(interface_list);
907 return hr;