wined3d: Remove some redundant checks in the vertexdeclaration() state handler.
[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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20
21 #include "config.h"
22
23 #include <stdarg.h>
24 #include <string.h>
25
26 #include "windef.h"
27 #include "winbase.h"
28 #include "winuser.h"
29 #include "winreg.h"
30 #include "winerror.h"
31 #include "objbase.h"
32
33 #include "ole2.h"
34 #include "olectl.h"
35 #include "initguid.h"
36 #include "compobj_private.h"
37 #include "moniker.h"
38
39 #include "wine/debug.h"
40
41 WINE_DEFAULT_DEBUG_CHANNEL(ole);
42
43 /*
44  * Near the bottom of this file are the exported DllRegisterServer and
45  * DllUnregisterServer, which make all this worthwhile.
46  */
47
48 /***********************************************************************
49  *              interface for self-registering
50  */
51 struct regsvr_interface
52 {
53     IID const *iid;             /* NULL for end of list */
54     LPCSTR name;                /* can be NULL to omit */
55     IID const *base_iid;        /* can be NULL to omit */
56     int num_methods;            /* can be <0 to omit */
57     CLSID const *ps_clsid;      /* can be NULL to omit */
58     CLSID const *ps_clsid32;    /* can be NULL to omit */
59 };
60
61 static HRESULT register_interfaces(struct regsvr_interface const *list);
62 static HRESULT unregister_interfaces(struct regsvr_interface const *list);
63
64 struct regsvr_coclass
65 {
66     CLSID const *clsid;         /* NULL for end of list */
67     LPCSTR name;                /* can be NULL to omit */
68     LPCSTR ips;                 /* can be NULL to omit */
69     LPCSTR ips32;               /* can be NULL to omit */
70     LPCSTR ips32_tmodel;        /* can be NULL to omit */
71     LPCSTR progid;              /* can be NULL to omit */
72 };
73
74 static HRESULT register_coclasses(struct regsvr_coclass const *list);
75 static HRESULT unregister_coclasses(struct regsvr_coclass const *list);
76
77 /***********************************************************************
78  *              static string constants
79  */
80 static WCHAR const interface_keyname[10] = {
81     'I', 'n', 't', 'e', 'r', 'f', 'a', 'c', 'e', 0 };
82 static WCHAR const base_ifa_keyname[14] = {
83     'B', 'a', 's', 'e', 'I', 'n', 't', 'e', 'r', 'f', 'a', 'c',
84     'e', 0 };
85 static WCHAR const num_methods_keyname[11] = {
86     'N', 'u', 'm', 'M', 'e', 't', 'h', 'o', 'd', 's', 0 };
87 static WCHAR const ps_clsid_keyname[15] = {
88     'P', 'r', 'o', 'x', 'y', 'S', 't', 'u', 'b', 'C', 'l', 's',
89     'i', 'd', 0 };
90 static WCHAR const ps_clsid32_keyname[17] = {
91     'P', 'r', 'o', 'x', 'y', 'S', 't', 'u', 'b', 'C', 'l', 's',
92     'i', 'd', '3', '2', 0 };
93 static WCHAR const clsid_keyname[6] = {
94     'C', 'L', 'S', 'I', 'D', 0 };
95 static WCHAR const ips_keyname[13] = {
96     'I', 'n', 'P', 'r', 'o', 'c', 'S', 'e', 'r', 'v', 'e', 'r',
97     0 };
98 static WCHAR const ips32_keyname[15] = {
99     'I', 'n', 'P', 'r', 'o', 'c', 'S', 'e', 'r', 'v', 'e', 'r',
100     '3', '2', 0 };
101 static WCHAR const progid_keyname[7] = {
102     'P', 'r', 'o', 'g', 'I', 'D', 0 };
103 static char const tmodel_valuename[] = "ThreadingModel";
104
105 /***********************************************************************
106  *              static helper functions
107  */
108 static LONG register_key_guid(HKEY base, WCHAR const *name, GUID const *guid);
109 static LONG register_key_defvalueW(HKEY base, WCHAR const *name,
110                                    WCHAR const *value);
111 static LONG register_key_defvalueA(HKEY base, WCHAR const *name,
112                                    char const *value);
113 static LONG register_progid(WCHAR const *clsid, char const *progid,
114                             char const *name);
115 static LONG recursive_delete_key(HKEY key);
116 static LONG recursive_delete_keyA(HKEY base, char const *name);
117
118
119 /***********************************************************************
120  *              register_interfaces
121  */
122 static HRESULT register_interfaces(struct regsvr_interface const *list)
123 {
124     LONG res = ERROR_SUCCESS;
125     HKEY interface_key;
126
127     res = RegCreateKeyExW(HKEY_CLASSES_ROOT, interface_keyname, 0, NULL, 0,
128                           KEY_READ | KEY_WRITE, NULL, &interface_key, NULL);
129     if (res != ERROR_SUCCESS) goto error_return;
130
131     for (; res == ERROR_SUCCESS && list->iid; ++list) {
132         WCHAR buf[39];
133         HKEY iid_key;
134
135         StringFromGUID2(list->iid, buf, 39);
136         res = RegCreateKeyExW(interface_key, buf, 0, NULL, 0,
137                               KEY_READ | KEY_WRITE, NULL, &iid_key, NULL);
138         if (res != ERROR_SUCCESS) goto error_close_interface_key;
139
140         if (list->name) {
141             res = RegSetValueExA(iid_key, NULL, 0, REG_SZ,
142                                  (CONST BYTE*)(list->name),
143                                  strlen(list->name) + 1);
144             if (res != ERROR_SUCCESS) goto error_close_iid_key;
145         }
146
147         if (list->base_iid) {
148             res = register_key_guid(iid_key, base_ifa_keyname, list->base_iid);
149             if (res != ERROR_SUCCESS) goto error_close_iid_key;
150         }
151
152         if (0 <= list->num_methods) {
153             static WCHAR const fmt[3] = { '%', 'd', 0 };
154             HKEY key;
155
156             res = RegCreateKeyExW(iid_key, num_methods_keyname, 0, NULL, 0,
157                                   KEY_READ | KEY_WRITE, NULL, &key, NULL);
158             if (res != ERROR_SUCCESS) goto error_close_iid_key;
159
160             wsprintfW(buf, fmt, list->num_methods);
161             res = RegSetValueExW(key, NULL, 0, REG_SZ,
162                                  (CONST BYTE*)buf,
163                                  (lstrlenW(buf) + 1) * sizeof(WCHAR));
164             RegCloseKey(key);
165
166             if (res != ERROR_SUCCESS) goto error_close_iid_key;
167         }
168
169         if (list->ps_clsid) {
170             res = register_key_guid(iid_key, ps_clsid_keyname, list->ps_clsid);
171             if (res != ERROR_SUCCESS) goto error_close_iid_key;
172         }
173
174         if (list->ps_clsid32) {
175             res = register_key_guid(iid_key, ps_clsid32_keyname, list->ps_clsid32);
176             if (res != ERROR_SUCCESS) goto error_close_iid_key;
177         }
178
179     error_close_iid_key:
180         RegCloseKey(iid_key);
181     }
182
183 error_close_interface_key:
184     RegCloseKey(interface_key);
185 error_return:
186     return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
187 }
188
189 /***********************************************************************
190  *              unregister_interfaces
191  */
192 static HRESULT unregister_interfaces(struct regsvr_interface const *list)
193 {
194     LONG res = ERROR_SUCCESS;
195     HKEY interface_key;
196
197     res = RegOpenKeyExW(HKEY_CLASSES_ROOT, interface_keyname, 0,
198                         KEY_READ | KEY_WRITE, &interface_key);
199     if (res == ERROR_FILE_NOT_FOUND) return S_OK;
200     if (res != ERROR_SUCCESS) goto error_return;
201
202     for (; res == ERROR_SUCCESS && list->iid; ++list) {
203         WCHAR buf[39];
204         HKEY iid_key;
205
206         StringFromGUID2(list->iid, buf, 39);
207         res = RegOpenKeyExW(interface_key, buf, 0,
208                             KEY_READ | KEY_WRITE, &iid_key);
209         if (res == ERROR_FILE_NOT_FOUND) {
210             res = ERROR_SUCCESS;
211             continue;
212         }
213         if (res != ERROR_SUCCESS) goto error_close_interface_key;
214         res = recursive_delete_key(iid_key);
215         RegCloseKey(iid_key);
216         if (res != ERROR_SUCCESS) goto error_close_interface_key;
217     }
218
219 error_close_interface_key:
220     RegCloseKey(interface_key);
221 error_return:
222     return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
223 }
224
225 /***********************************************************************
226  *              register_coclasses
227  */
228 static HRESULT register_coclasses(struct regsvr_coclass const *list)
229 {
230     LONG res = ERROR_SUCCESS;
231     HKEY coclass_key;
232
233     res = RegCreateKeyExW(HKEY_CLASSES_ROOT, clsid_keyname, 0, NULL, 0,
234                           KEY_READ | KEY_WRITE, NULL, &coclass_key, NULL);
235     if (res != ERROR_SUCCESS) goto error_return;
236
237     for (; res == ERROR_SUCCESS && list->clsid; ++list) {
238         WCHAR buf[39];
239         HKEY clsid_key;
240
241         StringFromGUID2(list->clsid, buf, 39);
242         res = RegCreateKeyExW(coclass_key, buf, 0, NULL, 0,
243                               KEY_READ | KEY_WRITE, NULL, &clsid_key, NULL);
244         if (res != ERROR_SUCCESS) goto error_close_coclass_key;
245
246         if (list->name) {
247             res = RegSetValueExA(clsid_key, NULL, 0, REG_SZ,
248                                  (CONST BYTE*)(list->name),
249                                  strlen(list->name) + 1);
250             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
251         }
252
253         if (list->ips) {
254             res = register_key_defvalueA(clsid_key, ips_keyname, list->ips);
255             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
256         }
257
258         if (list->ips32) {
259             HKEY ips32_key;
260
261             res = RegCreateKeyExW(clsid_key, ips32_keyname, 0, NULL, 0,
262                                   KEY_READ | KEY_WRITE, NULL,
263                                   &ips32_key, NULL);
264             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
265
266             res = RegSetValueExA(ips32_key, NULL, 0, REG_SZ,
267                                  (CONST BYTE*)list->ips32,
268                                  lstrlenA(list->ips32) + 1);
269             if (res == ERROR_SUCCESS && list->ips32_tmodel)
270                 res = RegSetValueExA(ips32_key, tmodel_valuename, 0, REG_SZ,
271                                      (CONST BYTE*)list->ips32_tmodel,
272                                      strlen(list->ips32_tmodel) + 1);
273             RegCloseKey(ips32_key);
274             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
275         }
276
277         if (list->progid) {
278             res = register_key_defvalueA(clsid_key, progid_keyname,
279                                          list->progid);
280             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
281
282             res = register_progid(buf, list->progid, list->name);
283             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
284         }
285
286     error_close_clsid_key:
287         RegCloseKey(clsid_key);
288     }
289
290 error_close_coclass_key:
291     RegCloseKey(coclass_key);
292 error_return:
293     return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
294 }
295
296 /***********************************************************************
297  *              unregister_coclasses
298  */
299 static HRESULT unregister_coclasses(struct regsvr_coclass const *list)
300 {
301     LONG res = ERROR_SUCCESS;
302     HKEY coclass_key;
303
304     res = RegOpenKeyExW(HKEY_CLASSES_ROOT, clsid_keyname, 0,
305                         KEY_READ | KEY_WRITE, &coclass_key);
306     if (res == ERROR_FILE_NOT_FOUND) return S_OK;
307     if (res != ERROR_SUCCESS) goto error_return;
308
309     for (; res == ERROR_SUCCESS && list->clsid; ++list) {
310         WCHAR buf[39];
311         HKEY clsid_key;
312
313         StringFromGUID2(list->clsid, buf, 39);
314         res = RegOpenKeyExW(coclass_key, buf, 0,
315                             KEY_READ | KEY_WRITE, &clsid_key);
316         if (res == ERROR_FILE_NOT_FOUND) {
317             res = ERROR_SUCCESS;
318             continue;
319         }
320         if (res != ERROR_SUCCESS) goto error_close_coclass_key;
321         res = recursive_delete_key(clsid_key);
322         RegCloseKey(clsid_key);
323         if (res != ERROR_SUCCESS) goto error_close_coclass_key;
324
325         if (list->progid) {
326             res = recursive_delete_keyA(HKEY_CLASSES_ROOT, list->progid);
327             if (res != ERROR_SUCCESS) goto error_close_coclass_key;
328         }
329     }
330
331 error_close_coclass_key:
332     RegCloseKey(coclass_key);
333 error_return:
334     return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
335 }
336
337 /***********************************************************************
338  *              regsvr_key_guid
339  */
340 static LONG register_key_guid(HKEY base, WCHAR const *name, GUID const *guid)
341 {
342     WCHAR buf[39];
343
344     StringFromGUID2(guid, buf, 39);
345     return register_key_defvalueW(base, name, buf);
346 }
347
348 /***********************************************************************
349  *              regsvr_key_defvalueW
350  */
351 static LONG register_key_defvalueW(
352     HKEY base,
353     WCHAR const *name,
354     WCHAR const *value)
355 {
356     LONG res;
357     HKEY key;
358
359     res = RegCreateKeyExW(base, name, 0, NULL, 0,
360                           KEY_READ | KEY_WRITE, NULL, &key, NULL);
361     if (res != ERROR_SUCCESS) return res;
362     res = RegSetValueExW(key, NULL, 0, REG_SZ, (CONST BYTE*)value,
363                          (lstrlenW(value) + 1) * sizeof(WCHAR));
364     RegCloseKey(key);
365     return res;
366 }
367
368 /***********************************************************************
369  *              regsvr_key_defvalueA
370  */
371 static LONG register_key_defvalueA(
372     HKEY base,
373     WCHAR const *name,
374     char const *value)
375 {
376     LONG res;
377     HKEY key;
378
379     res = RegCreateKeyExW(base, name, 0, NULL, 0,
380                           KEY_READ | KEY_WRITE, NULL, &key, NULL);
381     if (res != ERROR_SUCCESS) return res;
382     res = RegSetValueExA(key, NULL, 0, REG_SZ, (CONST BYTE*)value,
383                          lstrlenA(value) + 1);
384     RegCloseKey(key);
385     return res;
386 }
387
388 /***********************************************************************
389  *              regsvr_progid
390  */
391 static LONG register_progid(
392     WCHAR const *clsid,
393     char const *progid,
394     char const *name)
395 {
396     LONG res;
397     HKEY progid_key;
398
399     res = RegCreateKeyExA(HKEY_CLASSES_ROOT, progid, 0,
400                           NULL, 0, KEY_READ | KEY_WRITE, NULL,
401                           &progid_key, NULL);
402     if (res != ERROR_SUCCESS) return res;
403
404     if (name) {
405         res = RegSetValueExA(progid_key, NULL, 0, REG_SZ,
406                              (CONST BYTE*)name, strlen(name) + 1);
407         if (res != ERROR_SUCCESS) goto error_close_progid_key;
408     }
409
410     if (clsid) {
411         res = register_key_defvalueW(progid_key, clsid_keyname, clsid);
412         if (res != ERROR_SUCCESS) goto error_close_progid_key;
413     }
414
415 error_close_progid_key:
416     RegCloseKey(progid_key);
417     return res;
418 }
419
420 /***********************************************************************
421  *              recursive_delete_key
422  */
423 static LONG recursive_delete_key(HKEY key)
424 {
425     LONG res;
426     WCHAR subkey_name[MAX_PATH];
427     DWORD cName;
428     HKEY subkey;
429
430     for (;;) {
431         cName = sizeof(subkey_name) / sizeof(WCHAR);
432         res = RegEnumKeyExW(key, 0, subkey_name, &cName,
433                             NULL, NULL, NULL, NULL);
434         if (res != ERROR_SUCCESS && res != ERROR_MORE_DATA) {
435             res = ERROR_SUCCESS; /* presumably we're done enumerating */
436             break;
437         }
438         res = RegOpenKeyExW(key, subkey_name, 0,
439                             KEY_READ | KEY_WRITE, &subkey);
440         if (res == ERROR_FILE_NOT_FOUND) continue;
441         if (res != ERROR_SUCCESS) break;
442
443         res = recursive_delete_key(subkey);
444         RegCloseKey(subkey);
445         if (res != ERROR_SUCCESS) break;
446     }
447
448     if (res == ERROR_SUCCESS) res = RegDeleteKeyW(key, 0);
449     return res;
450 }
451
452 /***********************************************************************
453  *              recursive_delete_keyA
454  */
455 static LONG recursive_delete_keyA(HKEY base, char const *name)
456 {
457     LONG res;
458     HKEY key;
459
460     res = RegOpenKeyExA(base, name, 0, KEY_READ | KEY_WRITE, &key);
461     if (res == ERROR_FILE_NOT_FOUND) return ERROR_SUCCESS;
462     if (res != ERROR_SUCCESS) return res;
463     res = recursive_delete_key(key);
464     RegCloseKey(key);
465     return res;
466 }
467
468 /***********************************************************************
469  *              coclass list
470  */
471 static GUID const CLSID_StdOleLink = {
472     0x00000300, 0x0000, 0x0000, {0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46} };
473
474 static GUID const CLSID_PointerMoniker = {
475     0x00000306, 0x0000, 0x0000, {0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46} };
476
477 static GUID const CLSID_PackagerMoniker = {
478     0x00000308, 0x0000, 0x0000, {0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46} };
479
480 extern GUID const CLSID_Picture_Metafile;
481 extern GUID const CLSID_Picture_Dib;
482
483 static struct regsvr_coclass const coclass_list[] = {
484     {   &CLSID_StdOleLink,
485         "StdOleLink",
486         NULL,
487         "ole32.dll",
488         NULL
489     },
490     {   &CLSID_FileMoniker,
491         "FileMoniker",
492         NULL,
493         "ole32.dll",
494         "Both"
495     },
496     {   &CLSID_ItemMoniker,
497         "ItemMoniker",
498         NULL,
499         "ole32.dll",
500         "Both"
501     },
502     {   &CLSID_AntiMoniker,
503         "AntiMoniker",
504         NULL,
505         "ole32.dll",
506         "Both"
507     },
508     {   &CLSID_PointerMoniker,
509         "PointerMoniker",
510         NULL,
511         "ole32.dll",
512         "Both"
513     },
514     {   &CLSID_PackagerMoniker,
515         "PackagerMoniker",
516         NULL,
517         "ole32.dll",
518         "Both"
519     },
520     {   &CLSID_CompositeMoniker,
521         "CompositeMoniker",
522         NULL,
523         "ole32.dll",
524         "Both"
525     },
526     {   &CLSID_DfMarshal,
527         "DfMarshal",
528         NULL,
529         "ole32.dll",
530         "Both"
531     },
532     {   &CLSID_Picture_Metafile,
533         "Picture (Metafile)",
534         NULL,
535         "ole32.dll",
536         NULL,
537         "StaticMetafile"
538     },
539     {   &CLSID_Picture_Dib,
540         "Picture (Device Independent Bitmap)",
541         NULL,
542         "ole32.dll",
543         NULL,
544         "StaticDib"
545     },
546     {   &CLSID_ClassMoniker,
547         "ClassMoniker",
548         NULL,
549         "ole32.dll",
550         "Both"
551     },
552     {   &CLSID_PSFactoryBuffer,
553         "PSFactoryBuffer",
554         NULL,
555         "ole32.dll",
556         "Both"
557     },
558     {   &CLSID_StdGlobalInterfaceTable,
559         "StdGlobalInterfaceTable",
560         NULL,
561         "ole32.dll",
562         "Apartment"
563     },
564     { NULL }                    /* list terminator */
565 };
566
567 /***********************************************************************
568  *              interface list
569  */
570
571 #define INTERFACE_ENTRY(interface, base, clsid32, clsid16) { &IID_##interface, #interface, base, sizeof(interface##Vtbl)/sizeof(void*), clsid16, clsid32 }
572 #define BAS_INTERFACE_ENTRY(interface, base) INTERFACE_ENTRY(interface, &IID_##base, &CLSID_PSFactoryBuffer, NULL)
573 #define STD_INTERFACE_ENTRY(interface) INTERFACE_ENTRY(interface, NULL, &CLSID_PSFactoryBuffer, NULL)
574 #define LCL_INTERFACE_ENTRY(interface) INTERFACE_ENTRY(interface, NULL, NULL, NULL)
575
576 static const struct regsvr_interface interface_list[] = {
577     LCL_INTERFACE_ENTRY(IUnknown),
578     STD_INTERFACE_ENTRY(IClassFactory),
579     LCL_INTERFACE_ENTRY(IMalloc),
580     LCL_INTERFACE_ENTRY(IMarshal),
581     STD_INTERFACE_ENTRY(ILockBytes),
582     STD_INTERFACE_ENTRY(IStorage),
583     STD_INTERFACE_ENTRY(IStream),
584     STD_INTERFACE_ENTRY(IEnumSTATSTG),
585     STD_INTERFACE_ENTRY(IBindCtx),
586     BAS_INTERFACE_ENTRY(IMoniker, IPersistStream),
587     STD_INTERFACE_ENTRY(IRunningObjectTable),
588     STD_INTERFACE_ENTRY(IRootStorage),
589     LCL_INTERFACE_ENTRY(IMessageFilter),
590     LCL_INTERFACE_ENTRY(IStdMarshalInfo),
591     LCL_INTERFACE_ENTRY(IExternalConnection),
592     LCL_INTERFACE_ENTRY(IMallocSpy),
593     LCL_INTERFACE_ENTRY(IMultiQI),
594     STD_INTERFACE_ENTRY(IEnumUnknown),
595     STD_INTERFACE_ENTRY(IEnumString),
596     STD_INTERFACE_ENTRY(IEnumMoniker),
597     STD_INTERFACE_ENTRY(IEnumFORMATETC),
598     STD_INTERFACE_ENTRY(IEnumOLEVERB),
599     STD_INTERFACE_ENTRY(IEnumSTATDATA),
600     BAS_INTERFACE_ENTRY(IPersistStream, IPersist),
601     BAS_INTERFACE_ENTRY(IPersistStorage, IPersist),
602     BAS_INTERFACE_ENTRY(IPersistFile, IPersist),
603     STD_INTERFACE_ENTRY(IPersist),
604     STD_INTERFACE_ENTRY(IViewObject),
605     STD_INTERFACE_ENTRY(IDataObject),
606     STD_INTERFACE_ENTRY(IAdviseSink),
607     LCL_INTERFACE_ENTRY(IDataAdviseHolder),
608     LCL_INTERFACE_ENTRY(IOleAdviseHolder),
609     STD_INTERFACE_ENTRY(IOleObject),
610     BAS_INTERFACE_ENTRY(IOleInPlaceObject, IOleWindow),
611     STD_INTERFACE_ENTRY(IOleWindow),
612     BAS_INTERFACE_ENTRY(IOleInPlaceUIWindow, IOleWindow),
613     STD_INTERFACE_ENTRY(IOleInPlaceFrame),
614     BAS_INTERFACE_ENTRY(IOleInPlaceActiveObject, IOleWindow),
615     STD_INTERFACE_ENTRY(IOleClientSite),
616     BAS_INTERFACE_ENTRY(IOleInPlaceSite, IOleWindow),
617     STD_INTERFACE_ENTRY(IParseDisplayName),
618     BAS_INTERFACE_ENTRY(IOleContainer, IParseDisplayName),
619     BAS_INTERFACE_ENTRY(IOleItemContainer, IOleContainer),
620     STD_INTERFACE_ENTRY(IOleLink),
621     STD_INTERFACE_ENTRY(IOleCache),
622     LCL_INTERFACE_ENTRY(IDropSource),
623     STD_INTERFACE_ENTRY(IDropTarget),
624     BAS_INTERFACE_ENTRY(IAdviseSink2, IAdviseSink),
625     STD_INTERFACE_ENTRY(IRunnableObject),
626     BAS_INTERFACE_ENTRY(IViewObject2, IViewObject),
627     BAS_INTERFACE_ENTRY(IOleCache2, IOleCache),
628     STD_INTERFACE_ENTRY(IOleCacheControl),
629     STD_INTERFACE_ENTRY(IRemUnknown),
630     LCL_INTERFACE_ENTRY(IClientSecurity),
631     LCL_INTERFACE_ENTRY(IServerSecurity),
632     STD_INTERFACE_ENTRY(ISequentialStream),
633     { NULL }                    /* list terminator */
634 };
635
636 /***********************************************************************
637  *              DllRegisterServer (OLE32.@)
638  */
639 HRESULT WINAPI DllRegisterServer(void)
640 {
641     HRESULT hr;
642
643     TRACE("\n");
644
645     hr = register_coclasses(coclass_list);
646     if (SUCCEEDED(hr))
647         hr = register_interfaces(interface_list);
648     return hr;
649 }
650
651 /***********************************************************************
652  *              DllUnregisterServer (OLE32.@)
653  */
654 HRESULT WINAPI DllUnregisterServer(void)
655 {
656     HRESULT hr;
657
658     TRACE("\n");
659
660     hr = unregister_coclasses(coclass_list);
661     if (SUCCEEDED(hr))
662         hr = unregister_interfaces(interface_list);
663     return hr;
664 }