crypt32: Use skip to avoid failures where support is missing.
[wine] / dlls / oleaut32 / regsvr.c
1 /*
2  *      self-registerable dll functions for oleaut32.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 "ole2.h"
31 #include "olectl.h"
32 #include "oleauto.h"
33 #include "initguid.h"
34 #include "typelib.h"
35
36 #include "wine/debug.h"
37
38 WINE_DEFAULT_DEBUG_CHANNEL(ole);
39
40 /*
41  * Near the bottom of this file are the exported DllRegisterServer and
42  * DllUnregisterServer, which make all this worthwhile.
43  */
44
45 /***********************************************************************
46  *              interface for self-registering
47  */
48 struct regsvr_interface
49 {
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 */
56 };
57
58 static HRESULT register_interfaces(struct regsvr_interface const *list);
59 static HRESULT unregister_interfaces(struct regsvr_interface const *list);
60
61 struct regsvr_coclass
62 {
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 */
70 };
71
72 static HRESULT register_coclasses(struct regsvr_coclass const *list);
73 static HRESULT unregister_coclasses(struct regsvr_coclass const *list);
74
75 /***********************************************************************
76  *              static string constants
77  */
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";
102
103 /***********************************************************************
104  *              static helper functions
105  */
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);
114
115 /***********************************************************************
116  *              register_interfaces
117  */
118 static HRESULT register_interfaces(struct regsvr_interface const *list)
119 {
120     LONG res = ERROR_SUCCESS;
121     HKEY interface_key;
122
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;
126
127     for (; res == ERROR_SUCCESS && list->iid; ++list) {
128         WCHAR buf[39];
129         HKEY iid_key;
130
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;
135
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;
141         }
142
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;
146         }
147
148         if (0 <= list->num_methods) {
149             static WCHAR const fmt[3] = { '%', 'd', 0 };
150             HKEY key;
151
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;
155
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);
161
162             if (res != ERROR_SUCCESS) goto error_close_iid_key;
163         }
164
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;
168         }
169
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;
173         }
174
175     error_close_iid_key:
176         RegCloseKey(iid_key);
177     }
178
179 error_close_interface_key:
180     RegCloseKey(interface_key);
181 error_return:
182     return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
183 }
184
185 /***********************************************************************
186  *              unregister_interfaces
187  */
188 static HRESULT unregister_interfaces(struct regsvr_interface const *list)
189 {
190     LONG res = ERROR_SUCCESS;
191     HKEY interface_key;
192
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;
197
198     for (; res == ERROR_SUCCESS && list->iid; ++list) {
199         WCHAR buf[39];
200
201         StringFromGUID2(list->iid, buf, 39);
202         res = recursive_delete_keyW(interface_key, buf);
203     }
204
205     RegCloseKey(interface_key);
206 error_return:
207     return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
208 }
209
210 /***********************************************************************
211  *              register_coclasses
212  */
213 static HRESULT register_coclasses(struct regsvr_coclass const *list)
214 {
215     LONG res = ERROR_SUCCESS;
216     HKEY coclass_key;
217
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;
221
222     for (; res == ERROR_SUCCESS && list->clsid; ++list) {
223         WCHAR buf[39];
224         HKEY clsid_key;
225
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;
230
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;
236         }
237
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;
241         }
242
243         if (list->ips32) {
244             HKEY ips32_key;
245
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;
250
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;
260         }
261
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;
266         }
267
268         if (list->progid) {
269             HKEY progid_key;
270
271             res = register_key_defvalueA(clsid_key, progid_keyname,
272                                          list->progid);
273             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
274
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;
279
280             res = register_key_defvalueW(progid_key, clsid_keyname, buf);
281             RegCloseKey(progid_key);
282             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
283         }
284
285     error_close_clsid_key:
286         RegCloseKey(clsid_key);
287     }
288
289 error_close_coclass_key:
290     RegCloseKey(coclass_key);
291 error_return:
292     return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
293 }
294
295 /***********************************************************************
296  *              unregister_coclasses
297  */
298 static HRESULT unregister_coclasses(struct regsvr_coclass const *list)
299 {
300     LONG res = ERROR_SUCCESS;
301     HKEY coclass_key;
302
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;
307
308     for (; res == ERROR_SUCCESS && list->clsid; ++list) {
309         WCHAR buf[39];
310
311         StringFromGUID2(list->clsid, buf, 39);
312         res = recursive_delete_keyW(coclass_key, buf);
313         if (res != ERROR_SUCCESS) goto error_close_coclass_key;
314
315         if (list->progid) {
316             res = recursive_delete_keyA(HKEY_CLASSES_ROOT, list->progid);
317             if (res != ERROR_SUCCESS) goto error_close_coclass_key;
318         }
319     }
320
321 error_close_coclass_key:
322     RegCloseKey(coclass_key);
323 error_return:
324     return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
325 }
326
327 /***********************************************************************
328  *              regsvr_key_guid
329  */
330 static LONG register_key_guid(HKEY base, WCHAR const *name, GUID const *guid)
331 {
332     WCHAR buf[39];
333
334     StringFromGUID2(guid, buf, 39);
335     return register_key_defvalueW(base, name, buf);
336 }
337
338 /***********************************************************************
339  *              regsvr_key_defvalueW
340  */
341 static LONG register_key_defvalueW(
342     HKEY base,
343     WCHAR const *name,
344     WCHAR const *value)
345 {
346     LONG res;
347     HKEY key;
348
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;
356 }
357
358 /***********************************************************************
359  *              regsvr_key_defvalueA
360  */
361 static LONG register_key_defvalueA(
362     HKEY base,
363     WCHAR const *name,
364     char const *value)
365 {
366     LONG res;
367     HKEY key;
368
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;
376 }
377
378 /***********************************************************************
379  *              recursive_delete_key
380  */
381 static LONG recursive_delete_key(HKEY key)
382 {
383     LONG res;
384     WCHAR subkey_name[MAX_PATH];
385     DWORD cName;
386     HKEY subkey;
387
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;
395         }
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;
400
401         res = recursive_delete_key(subkey);
402         RegCloseKey(subkey);
403         if (res != ERROR_SUCCESS) break;
404     }
405
406     if (res == ERROR_SUCCESS) res = RegDeleteKeyW(key, 0);
407     return res;
408 }
409
410 /***********************************************************************
411  *              recursive_delete_keyA
412  */
413 static LONG recursive_delete_keyA(HKEY base, char const *name)
414 {
415     LONG res;
416     HKEY key;
417
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;
424 }
425
426 /***********************************************************************
427  *              recursive_delete_keyW
428  */
429 static LONG recursive_delete_keyW(HKEY base, WCHAR const *name)
430 {
431     LONG res;
432     HKEY key;
433
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;
440 }
441
442 /***********************************************************************
443  *              coclass list
444  */
445 static GUID const CLSID_RecordInfo = {
446     0x0000002F, 0x0000, 0x0000, {0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46} };
447
448 static GUID const CLSID_OldFont = {
449     0x46763EE0, 0xCAB2, 0x11CE, {0x8C,0x20,0x00,0xAA,0x00,0x51,0xE5,0xD4} };
450
451 static GUID const CLSID_PSFactoryBuffer = {
452     0xB196B286, 0xBAB4, 0x101A, {0xB6,0x9C,0x00,0xAA,0x00,0x34,0x1D,0x07} };
453
454 static struct regsvr_coclass const coclass_list[] = {
455     {   &CLSID_RecordInfo,
456         "CLSID_RecordInfo",
457         NULL,
458         "oleaut32.dll",
459         "Both"
460     },
461     {   &CLSID_PSDispatch,
462         "PSDispatch",
463         "ole2disp.dll",
464         "oleaut32.dll",
465         "Both"
466     },
467     {   &CLSID_StdFont,
468         "CLSID_StdFont",
469         NULL,
470         "oleaut32.dll",
471         "Both",
472         "Standard Font",
473         "StdFont"
474     },
475     {   &CLSID_StdPicture,
476         "CLSID_StdPict",
477         NULL,
478         "oleaut32.dll",
479         "Apartment",
480         "Standard Picture",
481         "StdPicture"
482     },
483     {   &CLSID_PSEnumVariant,
484         "PSEnumVariant",
485         "ole2disp.dll",
486         "oleaut32.dll",
487         "Both"
488     },
489     {   &CLSID_PSTypeInfo,
490         "PSTypeInfo",
491         "ole2disp.dll",
492         "oleaut32.dll",
493         "Both"
494     },
495     {   &CLSID_PSTypeLib,
496         "PSTypeLib",
497         "ole2disp.dll",
498         "oleaut32.dll",
499         "Both"
500     },
501     {   &CLSID_PSOAInterface,
502         "PSOAInterface",
503         "ole2disp.dll",
504         "oleaut32.dll",
505         "Both"
506     },
507     {   &CLSID_PSTypeComp,
508         "PSTypeComp",
509         "ole2disp.dll",
510         "oleaut32.dll",
511         "Both"
512     },
513     {   &CLSID_OldFont,
514         "Obsolete Font",
515         NULL,
516         "oleaut32.dll",
517         NULL,
518         "Obsolete Font",
519         "OldFont"
520     },
521     {   &CLSID_PSFactoryBuffer,
522         "PSFactoryBuffer",
523         NULL,
524         "oleaut32.dll",
525         "Both"
526     },
527     { NULL }                    /* list terminator */
528 };
529
530 /***********************************************************************
531  *              interface list
532  */
533 static struct regsvr_interface const interface_list[] = {
534     {   &IID_IDispatch,
535         "IDispatch",
536         NULL,
537         7,
538         &CLSID_PSDispatch,
539         &CLSID_PSDispatch
540     },
541     {   &IID_ITypeInfo,
542         "ITypeInfo",
543         NULL,
544         22,
545         &CLSID_PSTypeInfo,
546         &CLSID_PSTypeInfo
547     },
548     {   &IID_ITypeLib,
549         "ITypeLib",
550         NULL,
551         13,
552         &CLSID_PSTypeLib,
553         &CLSID_PSTypeLib
554     },
555     {   &IID_ITypeComp,
556         "ITypeComp",
557         NULL,
558         5,
559         &CLSID_PSTypeComp,
560         &CLSID_PSTypeComp
561     },
562     {   &IID_IEnumVARIANT,
563         "IEnumVARIANT",
564         NULL,
565         15,
566         &CLSID_PSEnumVariant,
567         &CLSID_PSEnumVariant
568     },
569     {   &IID_ICreateTypeInfo,
570         "ICreateTypeInfo",
571         NULL,
572         26,
573         NULL,
574         NULL
575     },
576     {   &IID_ICreateTypeLib,
577         "ICreateTypeLib",
578         NULL,
579         13,
580         NULL,
581         NULL
582     },
583     {   &IID_ITypeInfo2,
584         "ITypeInfo2",
585         NULL,
586         32,
587         NULL,
588         &CLSID_PSDispatch
589     },
590     {   &IID_ITypeLib2,
591         "ITypeLib2",
592         NULL,
593         16,
594         NULL,
595         &CLSID_PSDispatch
596     },
597     {   &IID_IPropertyPage2,
598         "IPropertyPage2",
599         NULL,
600         15,
601         NULL,
602         &CLSID_PSFactoryBuffer
603     },
604     {   &IID_IErrorInfo,
605         "IErrorInfo",
606         NULL,
607         8,
608         NULL,
609         &CLSID_PSFactoryBuffer
610     },
611     {   &IID_ICreateErrorInfo,
612         "ICreateErrorInfo",
613         NULL,
614         8,
615         NULL,
616         &CLSID_PSFactoryBuffer
617     },
618     {   &IID_IPersistPropertyBag2,
619         "IPersistPropertyBag2",
620         NULL,
621         8,
622         NULL,
623         &CLSID_PSFactoryBuffer
624     },
625     {   &IID_IPropertyBag2,
626         "IPropertyBag2",
627         NULL,
628         8,
629         NULL,
630         &CLSID_PSFactoryBuffer
631     },
632     {   &IID_IErrorLog,
633         "IErrorLog",
634         NULL,
635         4,
636         NULL,
637         &CLSID_PSFactoryBuffer
638     },
639     {   &IID_IPerPropertyBrowsing,
640         "IPerPropertyBrowsing",
641         NULL,
642         7,
643         NULL,
644         &CLSID_PSFactoryBuffer
645     },
646     {   &IID_IPersistPropertyBag,
647         "IPersistPropertyBag",
648         NULL,
649         7,
650         NULL,
651         &CLSID_PSFactoryBuffer
652     },
653     {   &IID_IAdviseSinkEx,
654         "IAdviseSinkEx",
655         NULL,
656         9,
657         NULL,
658         &CLSID_PSFactoryBuffer
659     },
660     {   &IID_IFontEventsDisp,
661         "IFontEventsDisp",
662         NULL,
663         7,
664         NULL,
665         &CLSID_PSFactoryBuffer
666     },
667     {   &IID_IPropertyBag,
668         "IPropertyBag",
669         NULL,
670         5,
671         NULL,
672         &CLSID_PSFactoryBuffer
673     },
674     {   &IID_IPointerInactive,
675         "IPointerInactive",
676         NULL,
677         6,
678         NULL,
679         &CLSID_PSFactoryBuffer
680     },
681     {   &IID_ISimpleFrameSite,
682         "ISimpleFrameSite",
683         NULL,
684         5,
685         NULL,
686         &CLSID_PSFactoryBuffer
687     },
688     {   &IID_IPicture,
689         "IPicture",
690         NULL,
691         17,
692         NULL,
693         &CLSID_PSFactoryBuffer
694     },
695     {   &IID_IPictureDisp,
696         "IPictureDisp",
697         NULL,
698         7,
699         NULL,
700         &CLSID_PSFactoryBuffer
701     },
702     {   &IID_IPersistStreamInit,
703         "IPersistStreamInit",
704         NULL,
705         9,
706         NULL,
707         &CLSID_PSFactoryBuffer
708     },
709     {   &IID_IOleUndoUnit,
710         "IOleUndoUnit",
711         NULL,
712         7,
713         NULL,
714         &CLSID_PSFactoryBuffer
715     },
716     {   &IID_IPropertyNotifySink,
717         "IPropertyNotifySink",
718         NULL,
719         5,
720         NULL,
721         &CLSID_PSFactoryBuffer
722     },
723     {   &IID_IOleInPlaceSiteEx,
724         "IOleInPlaceSiteEx",
725         NULL,
726         18,
727         NULL,
728         &CLSID_PSFactoryBuffer
729     },
730     {   &IID_IOleParentUndoUnit,
731         "IOleParentUndoUnit",
732         NULL,
733         12,
734         NULL,
735         &CLSID_PSFactoryBuffer
736     },
737     {   &IID_IProvideClassInfo2,
738         "IProvideClassInfo2",
739         NULL,
740         5,
741         NULL,
742         &CLSID_PSFactoryBuffer
743     },
744     {   &IID_IProvideMultipleClassInfo,
745         "IProvideMultipleClassInfo",
746         NULL,
747         7,
748         NULL,
749         &CLSID_PSFactoryBuffer
750     },
751     {   &IID_IProvideClassInfo,
752         "IProvideClassInfo",
753         NULL,
754         4,
755         NULL,
756         &CLSID_PSFactoryBuffer
757     },
758     {   &IID_IConnectionPointContainer,
759         "IConnectionPointContainer",
760         NULL,
761         5,
762         NULL,
763         &CLSID_PSFactoryBuffer
764     },
765     {   &IID_IEnumConnectionPoints,
766         "IEnumConnectionPoints",
767         NULL,
768         7,
769         NULL,
770         &CLSID_PSFactoryBuffer
771     },
772     {   &IID_IConnectionPoint,
773         "IConnectionPoint",
774         NULL,
775         8,
776         NULL,
777         &CLSID_PSFactoryBuffer
778     },
779     {   &IID_IEnumConnections,
780         "IEnumConnections",
781         NULL,
782         7,
783         NULL,
784         &CLSID_PSFactoryBuffer
785     },
786     {   &IID_IOleControl,
787         "IOleControl",
788         NULL,
789         7,
790         NULL,
791         &CLSID_PSFactoryBuffer
792     },
793     {   &IID_IOleControlSite,
794         "IOleControlSite",
795         NULL,
796         10,
797         NULL,
798         &CLSID_PSFactoryBuffer
799     },
800     {   &IID_ISpecifyPropertyPages,
801         "ISpecifyPropertyPages",
802         NULL,
803         4,
804         NULL,
805         &CLSID_PSFactoryBuffer
806     },
807     {   &IID_IPropertyPageSite,
808         "IPropertyPageSite",
809         NULL,
810         7,
811         NULL,
812         &CLSID_PSFactoryBuffer
813     },
814     {   &IID_IPropertyPage,
815         "IPropertyPage",
816         NULL,
817         14,
818         NULL,
819         &CLSID_PSFactoryBuffer
820     },
821     {   &IID_IClassFactory2,
822         "IClassFactory2",
823         NULL,
824         8,
825         NULL,
826         &CLSID_PSFactoryBuffer
827     },
828     {   &IID_IEnumOleUndoUnits,
829         "IEnumOleUndoUnits",
830         NULL,
831         7,
832         NULL,
833         &CLSID_PSFactoryBuffer
834     },
835     {   &IID_IPersistMemory,
836         "IPersistMemory",
837         NULL,
838         9,
839         NULL,
840         &CLSID_PSFactoryBuffer
841     },
842     {   &IID_IFont,
843         "IFont",
844         NULL,
845         27,
846         NULL,
847         &CLSID_PSFactoryBuffer
848     },
849     {   &IID_IFontDisp,
850         "IFontDisp",
851         NULL,
852         7,
853         NULL,
854         &CLSID_PSFactoryBuffer
855     },
856     {   &IID_IQuickActivate,
857         "IQuickActivate",
858         NULL,
859         6,
860         NULL,
861         &CLSID_PSFactoryBuffer
862     },
863     {   &IID_IOleUndoManager,
864         "IOleUndoManager",
865         NULL,
866         15,
867         NULL,
868         &CLSID_PSFactoryBuffer
869     },
870     {   &IID_IObjectWithSite,
871         "IObjectWithSite",
872         NULL,
873         5,
874         NULL,
875         &CLSID_PSFactoryBuffer
876     },
877     { NULL }                    /* list terminator */
878 };
879
880 /***********************************************************************
881  *              DllRegisterServer (OLEAUT32.@)
882  */
883 HRESULT WINAPI DllRegisterServer(void)
884 {
885     HRESULT hr;
886
887     TRACE("\n");
888
889     hr = register_coclasses(coclass_list);
890     if (SUCCEEDED(hr))
891         hr = register_interfaces(interface_list);
892     return hr;
893 }
894
895 /***********************************************************************
896  *              DllUnregisterServer (OLEAUT32.@)
897  */
898 HRESULT WINAPI DllUnregisterServer(void)
899 {
900     HRESULT hr;
901
902     TRACE("\n");
903
904     hr = unregister_coclasses(coclass_list);
905     if (SUCCEEDED(hr))
906         hr = unregister_interfaces(interface_list);
907     return hr;
908 }