Spelling fixes.
[wine] / dlls / ole32 / regsvr.c
1 /*
2  *      self-registerable dll functions for ole32.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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include "windef.h"
22 #include "winbase.h"
23 #include "winuser.h"
24 #include "winreg.h"
25 #include "winerror.h"
26
27 #include "ole2.h"
28 #include "olectl.h"
29
30 #include "string.h"
31
32 #include "wine/debug.h"
33
34 WINE_DEFAULT_DEBUG_CHANNEL(ole);
35
36 /*
37  * Near the bottom of this file are the exported DllRegisterServer and
38  * DllUnregisterServer, which make all this worthwhile.
39  */
40
41 /***********************************************************************
42  *              interface for self-registering
43  */
44 struct regsvr_interface
45 {
46     IID const *iid;             /* NULL for end of list */
47     LPCSTR name;                /* can be NULL to omit */
48     IID const *base_iid;        /* can be NULL to omit */
49     int num_methods;            /* can be <0 to omit */
50     CLSID const *ps_clsid;      /* can be NULL to omit */
51     CLSID const *ps_clsid32;    /* can be NULL to omit */
52 };
53
54 static HRESULT register_interfaces(struct regsvr_interface const *list);
55 static HRESULT unregister_interfaces(struct regsvr_interface const *list);
56
57 struct regsvr_coclass
58 {
59     CLSID const *clsid;         /* NULL for end of list */
60     LPCSTR name;                /* can be NULL to omit */
61     LPCSTR ips;                 /* can be NULL to omit */
62     LPCSTR ips32;               /* can be NULL to omit */
63     LPCSTR ips32_tmodel;        /* can be NULL to omit */
64 };
65
66 static HRESULT register_coclasses(struct regsvr_coclass const *list);
67 static HRESULT unregister_coclasses(struct regsvr_coclass const *list);
68
69 /***********************************************************************
70  *              static string constants
71  */
72 static WCHAR const interface_keyname[10] = {
73     'I', 'n', 't', 'e', 'r', 'f', 'a', 'c', 'e', 0 };
74 static WCHAR const base_ifa_keyname[14] = {
75     'B', 'a', 's', 'e', 'I', 'n', 't', 'e', 'r', 'f', 'a', 'c',
76     'e', 0 };
77 static WCHAR const num_methods_keyname[11] = {
78     'N', 'u', 'm', 'M', 'e', 't', 'h', 'o', 'd', 's', 0 };
79 static WCHAR const ps_clsid_keyname[15] = {
80     'P', 'r', 'o', 'x', 'y', 'S', 't', 'u', 'b', 'C', 'l', 's',
81     'i', 'd', 0 };
82 static WCHAR const ps_clsid32_keyname[17] = {
83     'P', 'r', 'o', 'x', 'y', 'S', 't', 'u', 'b', 'C', 'l', 's',
84     'i', 'd', '3', '2', 0 };
85 static WCHAR const clsid_keyname[6] = {
86     'C', 'L', 'S', 'I', 'D', 0 };
87 static WCHAR const ips_keyname[13] = {
88     'I', 'n', 'P', 'r', 'o', 'c', 'S', 'e', 'r', 'v', 'e', 'r',
89     0 };
90 static WCHAR const ips32_keyname[15] = {
91     'I', 'n', 'P', 'r', 'o', 'c', 'S', 'e', 'r', 'v', 'e', 'r',
92     '3', '2', 0 };
93 static char const tmodel_valuename[] = "ThreadingModel";
94
95 /***********************************************************************
96  *              static helper functions
97  */
98 static LONG register_key_guid(HKEY base, WCHAR const *name, GUID const *guid);
99 static LONG register_key_defvalueW(HKEY base, WCHAR const *name,
100                                    WCHAR const *value);
101 static LONG register_key_defvalueA(HKEY base, WCHAR const *name,
102                                    char const *value);
103 static LONG recursive_delete_key(HKEY key);
104
105
106 /***********************************************************************
107  *              register_interfaces
108  */
109 static HRESULT register_interfaces(struct regsvr_interface const *list)
110 {
111     LONG res = ERROR_SUCCESS;
112     HKEY interface_key;
113
114     res = RegCreateKeyExW(HKEY_CLASSES_ROOT, interface_keyname, 0, NULL, 0,
115                           KEY_READ | KEY_WRITE, NULL, &interface_key, NULL);
116     if (res != ERROR_SUCCESS) goto error_return;
117
118     for (; res == ERROR_SUCCESS && list->iid; ++list) {
119         WCHAR buf[39];
120         HKEY iid_key;
121
122         StringFromGUID2(list->iid, buf, 39);
123         res = RegCreateKeyExW(interface_key, buf, 0, NULL, 0,
124                               KEY_READ | KEY_WRITE, NULL, &iid_key, NULL);
125         if (res != ERROR_SUCCESS) goto error_close_interface_key;
126
127         if (list->name) {
128             res = RegSetValueExA(iid_key, NULL, 0, REG_SZ,
129                                  (CONST BYTE*)(list->name),
130                                  strlen(list->name) + 1);
131             if (res != ERROR_SUCCESS) goto error_close_iid_key;
132         }
133
134         if (list->base_iid) {
135             register_key_guid(iid_key, base_ifa_keyname, list->base_iid);
136             if (res != ERROR_SUCCESS) goto error_close_iid_key;
137         }
138
139         if (0 <= list->num_methods) {
140             static WCHAR const fmt[3] = { '%', 'd', 0 };
141             HKEY key;
142
143             res = RegCreateKeyExW(iid_key, num_methods_keyname, 0, NULL, 0,
144                                   KEY_READ | KEY_WRITE, NULL, &key, NULL);
145             if (res != ERROR_SUCCESS) goto error_close_iid_key;
146
147             wsprintfW(buf, fmt, list->num_methods);
148             res = RegSetValueExW(key, NULL, 0, REG_SZ,
149                                  (CONST BYTE*)buf,
150                                  (lstrlenW(buf) + 1) * sizeof(WCHAR));
151             RegCloseKey(key);
152
153             if (res != ERROR_SUCCESS) goto error_close_iid_key;
154         }
155
156         if (list->ps_clsid) {
157             register_key_guid(iid_key, ps_clsid_keyname, list->ps_clsid);
158             if (res != ERROR_SUCCESS) goto error_close_iid_key;
159         }
160
161         if (list->ps_clsid32) {
162             register_key_guid(iid_key, ps_clsid32_keyname, list->ps_clsid32);
163             if (res != ERROR_SUCCESS) goto error_close_iid_key;
164         }
165
166     error_close_iid_key:
167         RegCloseKey(iid_key);
168     }
169
170 error_close_interface_key:
171     RegCloseKey(interface_key);
172 error_return:
173     return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
174 }
175
176 /***********************************************************************
177  *              unregister_interfaces
178  */
179 static HRESULT unregister_interfaces(struct regsvr_interface const *list)
180 {
181     LONG res = ERROR_SUCCESS;
182     HKEY interface_key;
183
184     res = RegOpenKeyExW(HKEY_CLASSES_ROOT, interface_keyname, 0,
185                         KEY_READ | KEY_WRITE, &interface_key);
186     if (res == ERROR_FILE_NOT_FOUND) return S_OK;
187     if (res != ERROR_SUCCESS) goto error_return;
188
189     for (; res == ERROR_SUCCESS && list->iid; ++list) {
190         WCHAR buf[39];
191         HKEY iid_key;
192
193         StringFromGUID2(list->iid, buf, 39);
194         res = RegOpenKeyExW(interface_key, buf, 0,
195                             KEY_READ | KEY_WRITE, &iid_key);
196         if (res == ERROR_FILE_NOT_FOUND) {
197             res = ERROR_SUCCESS;
198             continue;
199         }
200         if (res != ERROR_SUCCESS) goto error_close_interface_key;
201         res = recursive_delete_key(iid_key);
202         RegCloseKey(iid_key);
203         if (res != ERROR_SUCCESS) goto error_close_interface_key;
204     }
205
206 error_close_interface_key:
207     RegCloseKey(interface_key);
208 error_return:
209     return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
210 }
211
212 /***********************************************************************
213  *              register_coclasses
214  */
215 static HRESULT register_coclasses(struct regsvr_coclass const *list)
216 {
217     LONG res = ERROR_SUCCESS;
218     HKEY coclass_key;
219
220     res = RegCreateKeyExW(HKEY_CLASSES_ROOT, clsid_keyname, 0, NULL, 0,
221                           KEY_READ | KEY_WRITE, NULL, &coclass_key, NULL);
222     if (res != ERROR_SUCCESS) goto error_return;
223
224     for (; res == ERROR_SUCCESS && list->clsid; ++list) {
225         WCHAR buf[39];
226         HKEY clsid_key;
227
228         StringFromGUID2(list->clsid, buf, 39);
229         res = RegCreateKeyExW(coclass_key, buf, 0, NULL, 0,
230                               KEY_READ | KEY_WRITE, NULL, &clsid_key, NULL);
231         if (res != ERROR_SUCCESS) goto error_close_coclass_key;
232
233         if (list->name) {
234             res = RegSetValueExA(clsid_key, NULL, 0, REG_SZ,
235                                  (CONST BYTE*)(list->name),
236                                  strlen(list->name) + 1);
237             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
238         }
239
240         if (list->ips) {
241             res = register_key_defvalueA(clsid_key, ips_keyname, list->ips);
242             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
243         }
244
245         if (list->ips32) {
246             HKEY ips32_key;
247
248             res = RegCreateKeyExW(clsid_key, ips32_keyname, 0, NULL, 0,
249                                   KEY_READ | KEY_WRITE, NULL,
250                                   &ips32_key, NULL);
251             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
252
253             res = RegSetValueExA(ips32_key, NULL, 0, REG_SZ,
254                                  (CONST BYTE*)list->ips32,
255                                  lstrlenA(list->ips32) + 1);
256             if (res == ERROR_SUCCESS && list->ips32_tmodel)
257                 res = RegSetValueExA(ips32_key, tmodel_valuename, 0, REG_SZ,
258                                      (CONST BYTE*)list->ips32_tmodel,
259                                      strlen(list->ips32_tmodel) + 1);
260             RegCloseKey(ips32_key);
261             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
262         }
263
264     error_close_clsid_key:
265         RegCloseKey(clsid_key);
266     }
267
268 error_close_coclass_key:
269     RegCloseKey(coclass_key);
270 error_return:
271     return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
272 }
273
274 /***********************************************************************
275  *              unregister_coclasses
276  */
277 static HRESULT unregister_coclasses(struct regsvr_coclass const *list)
278 {
279     LONG res = ERROR_SUCCESS;
280     HKEY coclass_key;
281
282     res = RegOpenKeyExW(HKEY_CLASSES_ROOT, clsid_keyname, 0,
283                         KEY_READ | KEY_WRITE, &coclass_key);
284     if (res == ERROR_FILE_NOT_FOUND) return S_OK;
285     if (res != ERROR_SUCCESS) goto error_return;
286
287     for (; res == ERROR_SUCCESS && list->clsid; ++list) {
288         WCHAR buf[39];
289         HKEY clsid_key;
290
291         StringFromGUID2(list->clsid, buf, 39);
292         res = RegOpenKeyExW(coclass_key, buf, 0,
293                             KEY_READ | KEY_WRITE, &clsid_key);
294         if (res == ERROR_FILE_NOT_FOUND) {
295             res = ERROR_SUCCESS;
296             continue;
297         }
298         if (res != ERROR_SUCCESS) goto error_close_coclass_key;
299         res = recursive_delete_key(clsid_key);
300         RegCloseKey(clsid_key);
301         if (res != ERROR_SUCCESS) goto error_close_coclass_key;
302     }
303
304 error_close_coclass_key:
305     RegCloseKey(coclass_key);
306 error_return:
307     return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
308 }
309
310 /***********************************************************************
311  *              regsvr_key_guid
312  */
313 static LONG register_key_guid(HKEY base, WCHAR const *name, GUID const *guid)
314 {
315     WCHAR buf[39];
316
317     StringFromGUID2(guid, buf, 39);
318     return register_key_defvalueW(base, name, buf);
319 }
320
321 /***********************************************************************
322  *              regsvr_key_defvalueW
323  */
324 static LONG register_key_defvalueW(
325     HKEY base,
326     WCHAR const *name,
327     WCHAR const *value)
328 {
329     LONG res;
330     HKEY key;
331
332     res = RegCreateKeyExW(base, name, 0, NULL, 0,
333                           KEY_READ | KEY_WRITE, NULL, &key, NULL);
334     if (res != ERROR_SUCCESS) return res;
335     res = RegSetValueExW(key, NULL, 0, REG_SZ, (CONST BYTE*)value,
336                          (lstrlenW(value) + 1) * sizeof(WCHAR));
337     RegCloseKey(key);
338     return res;
339 }
340
341 /***********************************************************************
342  *              regsvr_key_defvalueA
343  */
344 static LONG register_key_defvalueA(
345     HKEY base,
346     WCHAR const *name,
347     char const *value)
348 {
349     LONG res;
350     HKEY key;
351
352     res = RegCreateKeyExW(base, name, 0, NULL, 0,
353                           KEY_READ | KEY_WRITE, NULL, &key, NULL);
354     if (res != ERROR_SUCCESS) return res;
355     res = RegSetValueExA(key, NULL, 0, REG_SZ, (CONST BYTE*)value,
356                          lstrlenA(value) + 1);
357     RegCloseKey(key);
358     return res;
359 }
360
361 /***********************************************************************
362  *              recursive_delete_key
363  */
364 static LONG recursive_delete_key(HKEY key)
365 {
366     LONG res;
367     WCHAR subkey_name[MAX_PATH];
368     DWORD cName;
369     HKEY subkey;
370
371     for (;;) {
372         cName = sizeof(subkey_name) / sizeof(WCHAR);
373         res = RegEnumKeyExW(key, 0, subkey_name, &cName,
374                             NULL, NULL, NULL, NULL);
375         if (res != ERROR_SUCCESS && res != ERROR_MORE_DATA) {
376             res = ERROR_SUCCESS; /* presumably we're done enumerating */
377             break;
378         }
379         res = RegOpenKeyExW(key, subkey_name, 0,
380                             KEY_READ | KEY_WRITE, &subkey);
381         if (res == ERROR_FILE_NOT_FOUND) continue;
382         if (res != ERROR_SUCCESS) break;
383
384         res = recursive_delete_key(subkey);
385         RegCloseKey(subkey);
386         if (res != ERROR_SUCCESS) break;
387     }
388
389     if (res == ERROR_SUCCESS) res = RegDeleteKeyW(key, 0);
390     return res;
391 }
392
393 /***********************************************************************
394  *              coclass list
395  */
396 static GUID const CLSID_FileMoniker = {
397     0x00000303, 0x0000, 0x0000, {0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46} };
398
399 static GUID const CLSID_ItemMoniker = {
400     0x00000304, 0x0000, 0x0000, {0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46} };
401
402 /* FIXME: DfMarshal and PSFactoryBuffer are defined elsewhere too */
403
404 static GUID const CLSID_DfMarshal = {
405     0x0000030B, 0x0000, 0x0000, {0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46} };
406
407 static GUID const CLSID_PSFactoryBuffer = {
408     0x00000320, 0x0000, 0x0000, {0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46} };
409
410 static struct regsvr_coclass const coclass_list[] = {
411     {   &CLSID_FileMoniker,
412         "FileMoniker",
413         NULL,
414         "ole32.dll",
415         "Both"
416     },
417     {   &CLSID_ItemMoniker,
418         "ItemMoniker",
419         NULL,
420         "ole32.dll",
421         "Both"
422     },
423     {   &CLSID_DfMarshal,
424         "DfMarshal",
425         NULL,
426         "ole32.dll",
427         "Both"
428     },
429     {   &CLSID_PSFactoryBuffer,
430         "PSFactoryBuffer",
431         NULL,
432         "ole32.dll",
433         "Both"
434     },
435     {   &CLSID_StdGlobalInterfaceTable,
436         "StdGlobalInterfaceTable",
437         NULL,
438         "ole32.dll",
439         "Apartment"
440     },
441     { NULL }                    /* list terminator */
442 };
443
444 /***********************************************************************
445  *              interface list
446  */
447
448 /* FIXME: perhaps the interfaces that are proxied by another dll
449  * should be registered in that dll?  Or maybe the choice of proxy is
450  * arbitrary at this point? */
451
452 static GUID const CLSID_PSFactoryBuffer_ole2disp = {
453     0x00020420, 0x0000, 0x0000, {0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46} };
454
455 static GUID const CLSID_PSFactoryBuffer_oleaut32 = {
456     0xB196B286, 0xBAB4, 0x101A, {0xB6,0x9C,0x00,0xAA,0x00,0x34,0x1D,0x07} };
457
458 /* FIXME: these interfaces should be defined in ocidl.idl */
459
460 static IID const IID_IFontEventsDisp = {
461     0x4EF6100A, 0xAF88, 0x11D0, {0x98,0x46,0x00,0xC0,0x4F,0xC2,0x99,0x93} };
462
463 static IID const IID_IProvideMultipleClassInfo = {
464     0xA7ABA9C1, 0x8983, 0x11CF, {0x8F,0x20,0x00,0x80,0x5F,0x2C,0xD0,0x64} };
465
466 static IID const IID_IObjectWithSite = {
467     0xFC4801A3, 0x2BA9, 0x11CF, {0xA2,0x29,0x00,0xAA,0x00,0x3D,0x73,0x52} };
468
469 static struct regsvr_interface const interface_list[] = {
470     {   &IID_IUnknown,
471         "IUnknown",
472         NULL,
473         3,
474         NULL,
475         &CLSID_PSFactoryBuffer
476     },
477     {   &IID_IClassFactory,
478         "IClassFactory",
479         NULL,
480         5,
481         NULL,
482         &CLSID_PSFactoryBuffer
483     },
484     {   &IID_IStorage,
485         "IStorage",
486         NULL,
487         18,
488         NULL,
489         &CLSID_PSFactoryBuffer
490     },
491     {   &IID_IStream,
492         "IStream",
493         NULL,
494         14,
495         NULL,
496         &CLSID_PSFactoryBuffer
497     },
498     {   &IID_IPersistStorage,
499         "IPersistStorage",
500         NULL,
501         10,
502         NULL,
503         &CLSID_PSFactoryBuffer
504     },
505     {   &IID_IDataObject,
506         "IDataObject",
507         NULL,
508         12,
509         NULL,
510         &CLSID_PSFactoryBuffer
511     },
512     {   &IID_IAdviseSink,
513         "IAdviseSink",
514         NULL,
515         8,
516         NULL,
517         &CLSID_PSFactoryBuffer
518     },
519     {   &IID_IOleObject,
520         "IOleObject",
521         NULL,
522         24,
523         NULL,
524         &CLSID_PSFactoryBuffer
525     },
526     {   &IID_IOleClientSite,
527         "IOleClientSite",
528         NULL,
529         9,
530         NULL,
531         &CLSID_PSFactoryBuffer
532     },
533     {   &IID_IDispatch,
534         "IDispatch",
535         NULL,
536         7,
537         &CLSID_PSFactoryBuffer_ole2disp,
538         &CLSID_PSFactoryBuffer_ole2disp
539     },
540     {   &IID_ITypeLib2,
541         "ITypeLib2",
542         NULL,
543         16,
544         NULL,
545         &CLSID_PSFactoryBuffer_ole2disp
546     },
547     {   &IID_ITypeInfo2,
548         "ITypeInfo2",
549         NULL,
550         32,
551         NULL,
552         &CLSID_PSFactoryBuffer_ole2disp
553     },
554     {   &IID_IPropertyPage2,
555         "IPropertyPage2",
556         NULL,
557         15,
558         NULL,
559         &CLSID_PSFactoryBuffer_oleaut32
560     },
561     {   &IID_IErrorInfo,
562         "IErrorInfo",
563         NULL,
564         8,
565         NULL,
566         &CLSID_PSFactoryBuffer_oleaut32
567     },
568     {   &IID_ICreateErrorInfo,
569         "ICreateErrorInfo",
570         NULL,
571         8,
572         NULL,
573         &CLSID_PSFactoryBuffer_oleaut32
574     },
575     {   &IID_IPersistPropertyBag2,
576         "IPersistPropertyBag2",
577         NULL,
578         8,
579         NULL,
580         &CLSID_PSFactoryBuffer_oleaut32
581     },
582     {   &IID_IPropertyBag2,
583         "IPropertyBag2",
584         NULL,
585         8,
586         NULL,
587         &CLSID_PSFactoryBuffer_oleaut32
588     },
589     {   &IID_IErrorLog,
590         "IErrorLog",
591         NULL,
592         4,
593         NULL,
594         &CLSID_PSFactoryBuffer_oleaut32
595     },
596     {   &IID_IPerPropertyBrowsing,
597         "IPerPropertyBrowsing",
598         NULL,
599         7,
600         NULL,
601         &CLSID_PSFactoryBuffer_oleaut32
602     },
603     {   &IID_IPersistPropertyBag,
604         "IPersistPropertyBag",
605         NULL,
606         7,
607         NULL,
608         &CLSID_PSFactoryBuffer_oleaut32
609     },
610     {   &IID_IAdviseSinkEx,
611         "IAdviseSinkEx",
612         NULL,
613         9,
614         NULL,
615         &CLSID_PSFactoryBuffer_oleaut32
616     },
617     {   &IID_IFontEventsDisp,
618         "IFontEventsDisp",
619         NULL,
620         7,
621         NULL,
622         &CLSID_PSFactoryBuffer_oleaut32
623     },
624     {   &IID_IPropertyBag,
625         "IPropertyBag",
626         NULL,
627         5,
628         NULL,
629         &CLSID_PSFactoryBuffer_oleaut32
630     },
631     {   &IID_IPointerInactive,
632         "IPointerInactive",
633         NULL,
634         6,
635         NULL,
636         &CLSID_PSFactoryBuffer_oleaut32
637     },
638     {   &IID_ISimpleFrameSite,
639         "ISimpleFrameSite",
640         NULL,
641         5,
642         NULL,
643         &CLSID_PSFactoryBuffer_oleaut32
644     },
645     {   &IID_IPicture,
646         "IPicture",
647         NULL,
648         17,
649         NULL,
650         &CLSID_PSFactoryBuffer_oleaut32
651     },
652     {   &IID_IPictureDisp,
653         "IPictureDisp",
654         NULL,
655         7,
656         NULL,
657         &CLSID_PSFactoryBuffer_oleaut32
658     },
659     {   &IID_IPersistStreamInit,
660         "IPersistStreamInit",
661         NULL,
662         9,
663         NULL,
664         &CLSID_PSFactoryBuffer_oleaut32
665     },
666     {   &IID_IOleUndoUnit,
667         "IOleUndoUnit",
668         NULL,
669         7,
670         NULL,
671         &CLSID_PSFactoryBuffer_oleaut32
672     },
673     {   &IID_IPropertyNotifySink,
674         "IPropertyNotifySink",
675         NULL,
676         5,
677         NULL,
678         &CLSID_PSFactoryBuffer_oleaut32
679     },
680     {   &IID_IOleInPlaceSiteEx,
681         "IOleInPlaceSiteEx",
682         NULL,
683         18,
684         NULL,
685         &CLSID_PSFactoryBuffer_oleaut32
686     },
687     {   &IID_IOleParentUndoUnit,
688         "IOleParentUndoUnit",
689         NULL,
690         12,
691         NULL,
692         &CLSID_PSFactoryBuffer_oleaut32
693     },
694     {   &IID_IProvideClassInfo2,
695         "IProvideClassInfo2",
696         NULL,
697         5,
698         NULL,
699         &CLSID_PSFactoryBuffer_oleaut32
700     },
701     {   &IID_IProvideMultipleClassInfo,
702         "IProvideMultipleClassInfo",
703         NULL,
704         7,
705         NULL,
706         &CLSID_PSFactoryBuffer_oleaut32
707     },
708     {   &IID_IProvideClassInfo,
709         "IProvideClassInfo",
710         NULL,
711         4,
712         NULL,
713         &CLSID_PSFactoryBuffer_oleaut32
714     },
715     {   &IID_IConnectionPointContainer,
716         "IConnectionPointContainer",
717         NULL,
718         5,
719         NULL,
720         &CLSID_PSFactoryBuffer_oleaut32
721     },
722     {   &IID_IEnumConnectionPoints,
723         "IEnumConnectionPoints",
724         NULL,
725         7,
726         NULL,
727         &CLSID_PSFactoryBuffer_oleaut32
728     },
729     {   &IID_IConnectionPoint,
730         "IConnectionPoint",
731         NULL,
732         8,
733         NULL,
734         &CLSID_PSFactoryBuffer_oleaut32
735     },
736     {   &IID_IEnumConnections,
737         "IEnumConnections",
738         NULL,
739         7,
740         NULL,
741         &CLSID_PSFactoryBuffer_oleaut32
742     },
743     {   &IID_IOleControl,
744         "IOleControl",
745         NULL,
746         7,
747         NULL,
748         &CLSID_PSFactoryBuffer_oleaut32
749     },
750     {   &IID_IOleControlSite,
751         "IOleControlSite",
752         NULL,
753         10,
754         NULL,
755         &CLSID_PSFactoryBuffer_oleaut32
756     },
757     {   &IID_ISpecifyPropertyPages,
758         "ISpecifyPropertyPages",
759         NULL,
760         4,
761         NULL,
762         &CLSID_PSFactoryBuffer_oleaut32
763     },
764     {   &IID_IPropertyPageSite,
765         "IPropertyPageSite",
766         NULL,
767         7,
768         NULL,
769         &CLSID_PSFactoryBuffer_oleaut32
770     },
771     {   &IID_IPropertyPage,
772         "IPropertyPage",
773         NULL,
774         14,
775         NULL,
776         &CLSID_PSFactoryBuffer_oleaut32
777     },
778     {   &IID_IClassFactory2,
779         "IClassFactory2",
780         NULL,
781         8,
782         NULL,
783         &CLSID_PSFactoryBuffer_oleaut32
784     },
785     {   &IID_IEnumOleUndoUnits,
786         "IEnumOleUndoUnits",
787         NULL,
788         7,
789         NULL,
790         &CLSID_PSFactoryBuffer_oleaut32
791     },
792     {   &IID_IPersistMemory,
793         "IPersistMemory",
794         NULL,
795         9,
796         NULL,
797         &CLSID_PSFactoryBuffer_oleaut32
798     },
799     {   &IID_IFont,
800         "IFont",
801         NULL,
802         27,
803         NULL,
804         &CLSID_PSFactoryBuffer_oleaut32
805     },
806     {   &IID_IFontDisp,
807         "IFontDisp",
808         NULL,
809         7,
810         NULL,
811         &CLSID_PSFactoryBuffer_oleaut32
812     },
813     {   &IID_IQuickActivate,
814         "IQuickActivate",
815         NULL,
816         6,
817         NULL,
818         &CLSID_PSFactoryBuffer_oleaut32
819     },
820     {   &IID_IOleUndoManager,
821         "IOleUndoManager",
822         NULL,
823         15,
824         NULL,
825         &CLSID_PSFactoryBuffer_oleaut32
826     },
827     {   &IID_IObjectWithSite,
828         "IObjectWithSite",
829         NULL,
830         5,
831         NULL,
832         &CLSID_PSFactoryBuffer_oleaut32
833     },
834     { NULL }                    /* list terminator */
835 };
836
837 /***********************************************************************
838  *              DllRegisterServer (OLE32.194)
839  */
840 HRESULT WINAPI OLE32_DllRegisterServer()
841 {
842     HRESULT hr;
843
844     TRACE("\n");
845
846     hr = register_coclasses(coclass_list);
847     if (SUCCEEDED(hr))
848         hr = register_interfaces(interface_list);
849     return hr;
850 }
851
852 /***********************************************************************
853  *              DllUnregisterServer (OLE32.@)
854  */
855 HRESULT WINAPI OLE32_DllUnregisterServer()
856 {
857     HRESULT hr;
858
859     TRACE("\n");
860
861     hr = unregister_coclasses(coclass_list);
862     if (SUCCEEDED(hr))
863         hr = unregister_interfaces(interface_list);
864     return hr;
865 }