Changes in crossover-wine-src-6.1.0 except for configure
[wine/hacks.git] / dlls / oleaut32 / regsvr.c
bloba8343f2a34a7d5d4105b9d5c60725afe77a3502b
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 struct regsvr_coclass const coclass_list[] = {
452 { &CLSID_RecordInfo,
453 "CLSID_RecordInfo",
454 NULL,
455 "oleaut32.dll",
456 "Both"
458 { &CLSID_PSDispatch,
459 "PSDispatch",
460 "ole2disp.dll",
461 "oleaut32.dll",
462 "Both"
464 { &CLSID_StdFont,
465 "CLSID_StdFont",
466 NULL,
467 "oleaut32.dll",
468 "Both",
469 "Standard Font",
470 "StdFont"
472 { &CLSID_StdPicture,
473 "CLSID_StdPict",
474 NULL,
475 "oleaut32.dll",
476 "Apartment",
477 "Standard Picture",
478 "StdPicture"
480 { &CLSID_PSEnumVariant,
481 "PSEnumVariant",
482 "ole2disp.dll",
483 "oleaut32.dll",
484 "Both"
486 { &CLSID_PSTypeInfo,
487 "PSTypeInfo",
488 "ole2disp.dll",
489 "oleaut32.dll",
490 "Both"
492 { &CLSID_PSTypeLib,
493 "PSTypeLib",
494 "ole2disp.dll",
495 "oleaut32.dll",
496 "Both"
498 { &CLSID_PSOAInterface,
499 "PSOAInterface",
500 "ole2disp.dll",
501 "oleaut32.dll",
502 "Both"
504 { &CLSID_PSTypeComp,
505 "PSTypeComp",
506 "ole2disp.dll",
507 "oleaut32.dll",
508 "Both"
510 { &CLSID_OldFont,
511 "Obsolete Font",
512 NULL,
513 "oleaut32.dll",
514 NULL,
515 "Obsolete Font",
516 "OldFont"
518 { &CLSID_PSFactoryBuffer,
519 "PSFactoryBuffer",
520 NULL,
521 "oleaut32.dll",
522 "Both"
524 { NULL } /* list terminator */
527 /***********************************************************************
528 * interface list
530 static struct regsvr_interface const interface_list[] = {
531 { &IID_IDispatch,
532 "IDispatch",
533 NULL,
535 &CLSID_PSDispatch,
536 &CLSID_PSDispatch
538 { &IID_ITypeInfo,
539 "ITypeInfo",
540 NULL,
542 &CLSID_PSTypeInfo,
543 &CLSID_PSTypeInfo
545 { &IID_ITypeLib,
546 "ITypeLib",
547 NULL,
549 &CLSID_PSTypeLib,
550 &CLSID_PSTypeLib
552 { &IID_ITypeComp,
553 "ITypeComp",
554 NULL,
556 &CLSID_PSTypeComp,
557 &CLSID_PSTypeComp
559 { &IID_IEnumVARIANT,
560 "IEnumVARIANT",
561 NULL,
563 &CLSID_PSEnumVariant,
564 &CLSID_PSEnumVariant
566 { &IID_ICreateTypeInfo,
567 "ICreateTypeInfo",
568 NULL,
570 NULL,
571 NULL
573 { &IID_ICreateTypeLib,
574 "ICreateTypeLib",
575 NULL,
577 NULL,
578 NULL
580 { &IID_ITypeInfo2,
581 "ITypeInfo2",
582 NULL,
584 NULL,
585 &CLSID_PSDispatch
587 { &IID_ITypeLib2,
588 "ITypeLib2",
589 NULL,
591 NULL,
592 &CLSID_PSDispatch
594 { &IID_IPropertyPage2,
595 "IPropertyPage2",
596 NULL,
598 NULL,
599 &CLSID_PSFactoryBuffer
601 { &IID_IErrorInfo,
602 "IErrorInfo",
603 NULL,
605 NULL,
606 &CLSID_PSFactoryBuffer
608 { &IID_ICreateErrorInfo,
609 "ICreateErrorInfo",
610 NULL,
612 NULL,
613 &CLSID_PSFactoryBuffer
615 { &IID_IPersistPropertyBag2,
616 "IPersistPropertyBag2",
617 NULL,
619 NULL,
620 &CLSID_PSFactoryBuffer
622 { &IID_IPropertyBag2,
623 "IPropertyBag2",
624 NULL,
626 NULL,
627 &CLSID_PSFactoryBuffer
629 { &IID_IErrorLog,
630 "IErrorLog",
631 NULL,
633 NULL,
634 &CLSID_PSFactoryBuffer
636 { &IID_IPerPropertyBrowsing,
637 "IPerPropertyBrowsing",
638 NULL,
640 NULL,
641 &CLSID_PSFactoryBuffer
643 { &IID_IPersistPropertyBag,
644 "IPersistPropertyBag",
645 NULL,
647 NULL,
648 &CLSID_PSFactoryBuffer
650 { &IID_IAdviseSinkEx,
651 "IAdviseSinkEx",
652 NULL,
654 NULL,
655 &CLSID_PSFactoryBuffer
657 { &IID_IFontEventsDisp,
658 "IFontEventsDisp",
659 NULL,
661 NULL,
662 &CLSID_PSFactoryBuffer
664 { &IID_IPropertyBag,
665 "IPropertyBag",
666 NULL,
668 NULL,
669 &CLSID_PSFactoryBuffer
671 { &IID_IPointerInactive,
672 "IPointerInactive",
673 NULL,
675 NULL,
676 &CLSID_PSFactoryBuffer
678 { &IID_ISimpleFrameSite,
679 "ISimpleFrameSite",
680 NULL,
682 NULL,
683 &CLSID_PSFactoryBuffer
685 { &IID_IPicture,
686 "IPicture",
687 NULL,
689 NULL,
690 &CLSID_PSFactoryBuffer
692 { &IID_IPictureDisp,
693 "IPictureDisp",
694 NULL,
696 NULL,
697 &CLSID_PSFactoryBuffer
699 { &IID_IPersistStreamInit,
700 "IPersistStreamInit",
701 NULL,
703 NULL,
704 &CLSID_PSFactoryBuffer
706 { &IID_IOleUndoUnit,
707 "IOleUndoUnit",
708 NULL,
710 NULL,
711 &CLSID_PSFactoryBuffer
713 { &IID_IPropertyNotifySink,
714 "IPropertyNotifySink",
715 NULL,
717 NULL,
718 &CLSID_PSFactoryBuffer
720 { &IID_IOleInPlaceSiteEx,
721 "IOleInPlaceSiteEx",
722 NULL,
724 NULL,
725 &CLSID_PSFactoryBuffer
727 { &IID_IOleParentUndoUnit,
728 "IOleParentUndoUnit",
729 NULL,
731 NULL,
732 &CLSID_PSFactoryBuffer
734 { &IID_IProvideClassInfo2,
735 "IProvideClassInfo2",
736 NULL,
738 NULL,
739 &CLSID_PSFactoryBuffer
741 { &IID_IProvideMultipleClassInfo,
742 "IProvideMultipleClassInfo",
743 NULL,
745 NULL,
746 &CLSID_PSFactoryBuffer
748 { &IID_IProvideClassInfo,
749 "IProvideClassInfo",
750 NULL,
752 NULL,
753 &CLSID_PSFactoryBuffer
755 { &IID_IConnectionPointContainer,
756 "IConnectionPointContainer",
757 NULL,
759 NULL,
760 &CLSID_PSFactoryBuffer
762 { &IID_IEnumConnectionPoints,
763 "IEnumConnectionPoints",
764 NULL,
766 NULL,
767 &CLSID_PSFactoryBuffer
769 { &IID_IConnectionPoint,
770 "IConnectionPoint",
771 NULL,
773 NULL,
774 &CLSID_PSFactoryBuffer
776 { &IID_IEnumConnections,
777 "IEnumConnections",
778 NULL,
780 NULL,
781 &CLSID_PSFactoryBuffer
783 { &IID_IOleControl,
784 "IOleControl",
785 NULL,
787 NULL,
788 &CLSID_PSFactoryBuffer
790 { &IID_IOleControlSite,
791 "IOleControlSite",
792 NULL,
794 NULL,
795 &CLSID_PSFactoryBuffer
797 { &IID_ISpecifyPropertyPages,
798 "ISpecifyPropertyPages",
799 NULL,
801 NULL,
802 &CLSID_PSFactoryBuffer
804 { &IID_IPropertyPageSite,
805 "IPropertyPageSite",
806 NULL,
808 NULL,
809 &CLSID_PSFactoryBuffer
811 { &IID_IPropertyPage,
812 "IPropertyPage",
813 NULL,
815 NULL,
816 &CLSID_PSFactoryBuffer
818 { &IID_IClassFactory2,
819 "IClassFactory2",
820 NULL,
822 NULL,
823 &CLSID_PSFactoryBuffer
825 { &IID_IEnumOleUndoUnits,
826 "IEnumOleUndoUnits",
827 NULL,
829 NULL,
830 &CLSID_PSFactoryBuffer
832 { &IID_IPersistMemory,
833 "IPersistMemory",
834 NULL,
836 NULL,
837 &CLSID_PSFactoryBuffer
839 { &IID_IFont,
840 "IFont",
841 NULL,
843 NULL,
844 &CLSID_PSFactoryBuffer
846 { &IID_IFontDisp,
847 "IFontDisp",
848 NULL,
850 NULL,
851 &CLSID_PSFactoryBuffer
853 { &IID_IQuickActivate,
854 "IQuickActivate",
855 NULL,
857 NULL,
858 &CLSID_PSFactoryBuffer
860 { &IID_IOleUndoManager,
861 "IOleUndoManager",
862 NULL,
864 NULL,
865 &CLSID_PSFactoryBuffer
867 { &IID_IObjectWithSite,
868 "IObjectWithSite",
869 NULL,
871 NULL,
872 &CLSID_PSFactoryBuffer
874 { NULL } /* list terminator */
877 /***********************************************************************
878 * DllRegisterServer (OLEAUT32.@)
880 HRESULT WINAPI DllRegisterServer(void)
882 HRESULT hr;
884 TRACE("\n");
886 hr = register_coclasses(coclass_list);
887 if (SUCCEEDED(hr))
888 hr = register_interfaces(interface_list);
889 return hr;
892 /***********************************************************************
893 * DllUnregisterServer (OLEAUT32.@)
895 HRESULT WINAPI DllUnregisterServer(void)
897 HRESULT hr;
899 TRACE("\n");
901 hr = unregister_coclasses(coclass_list);
902 if (SUCCEEDED(hr))
903 hr = unregister_interfaces(interface_list);
904 return hr;