dplayx: Code to forward player creation
[wine/gsoc_dplay.git] / dlls / dmstyle / regsvr.c
blob4addbd47fe84d32c89130dc1220a89f8b7bcf9b0
1 /*
2 * self-registerable dll functions for dmstyle.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 "dmstyle_private.h"
22 #include "wine/unicode.h"
24 WINE_DEFAULT_DEBUG_CHANNEL(dmstyle);
27 * Near the bottom of this file are the exported DllRegisterServer and
28 * DllUnregisterServer, which make all this worthwhile.
31 /***********************************************************************
32 * interface for self-registering
34 struct regsvr_interface {
35 IID const *iid; /* NULL for end of list */
36 LPCSTR name; /* can be NULL to omit */
37 IID const *base_iid; /* can be NULL to omit */
38 int num_methods; /* can be <0 to omit */
39 CLSID const *ps_clsid; /* can be NULL to omit */
40 CLSID const *ps_clsid32; /* can be NULL to omit */
43 static HRESULT register_interfaces(struct regsvr_interface const *list);
44 static HRESULT unregister_interfaces(struct regsvr_interface const *list);
46 struct regsvr_coclass {
47 CLSID const *clsid; /* NULL for end of list */
48 LPCSTR name; /* can be NULL to omit */
49 LPCSTR ips; /* can be NULL to omit */
50 LPCSTR ips32; /* can be NULL to omit */
51 LPCSTR ips32_tmodel; /* can be NULL to omit */
52 LPCSTR progid; /* can be NULL to omit */
53 LPCSTR viprogid; /* can be NULL to omit */
54 LPCSTR progid_extra; /* can be NULL to omit */
57 static HRESULT register_coclasses(struct regsvr_coclass const *list);
58 static HRESULT unregister_coclasses(struct regsvr_coclass const *list);
60 /***********************************************************************
61 * static string constants
63 static WCHAR const interface_keyname[10] = {
64 'I', 'n', 't', 'e', 'r', 'f', 'a', 'c', 'e', 0 };
65 static WCHAR const base_ifa_keyname[14] = {
66 'B', 'a', 's', 'e', 'I', 'n', 't', 'e', 'r', 'f', 'a', 'c',
67 'e', 0 };
68 static WCHAR const num_methods_keyname[11] = {
69 'N', 'u', 'm', 'M', 'e', 't', 'h', 'o', 'd', 's', 0 };
70 static WCHAR const ps_clsid_keyname[15] = {
71 'P', 'r', 'o', 'x', 'y', 'S', 't', 'u', 'b', 'C', 'l', 's',
72 'i', 'd', 0 };
73 static WCHAR const ps_clsid32_keyname[17] = {
74 'P', 'r', 'o', 'x', 'y', 'S', 't', 'u', 'b', 'C', 'l', 's',
75 'i', 'd', '3', '2', 0 };
76 static WCHAR const clsid_keyname[6] = {
77 'C', 'L', 'S', 'I', 'D', 0 };
78 static WCHAR const curver_keyname[7] = {
79 'C', 'u', 'r', 'V', 'e', 'r', 0 };
80 static WCHAR const ips_keyname[13] = {
81 'I', 'n', 'P', 'r', 'o', 'c', 'S', 'e', 'r', 'v', 'e', 'r',
82 0 };
83 static WCHAR const ips32_keyname[15] = {
84 'I', 'n', 'P', 'r', 'o', 'c', 'S', 'e', 'r', 'v', 'e', 'r',
85 '3', '2', 0 };
86 static WCHAR const progid_keyname[7] = {
87 'P', 'r', 'o', 'g', 'I', 'D', 0 };
88 static WCHAR const viprogid_keyname[25] = {
89 'V', 'e', 'r', 's', 'i', 'o', 'n', 'I', 'n', 'd', 'e', 'p',
90 'e', 'n', 'd', 'e', 'n', 't', 'P', 'r', 'o', 'g', 'I', 'D',
91 0 };
92 static char const tmodel_valuename[] = "ThreadingModel";
94 /***********************************************************************
95 * static helper functions
97 static LONG register_key_guid(HKEY base, WCHAR const *name, GUID const *guid);
98 static LONG register_key_defvalueW(HKEY base, WCHAR const *name,
99 WCHAR const *value);
100 static LONG register_key_defvalueA(HKEY base, WCHAR const *name,
101 char const *value);
102 static LONG register_progid(WCHAR const *clsid,
103 char const *progid, char const *curver_progid,
104 char const *name, char const *extra);
106 /***********************************************************************
107 * register_interfaces
109 static HRESULT register_interfaces(struct regsvr_interface const *list) {
110 LONG res = ERROR_SUCCESS;
111 HKEY interface_key;
113 res = RegCreateKeyExW(HKEY_CLASSES_ROOT, interface_keyname, 0, NULL, 0,
114 KEY_READ | KEY_WRITE, NULL, &interface_key, NULL);
115 if (res != ERROR_SUCCESS) goto error_return;
117 for (; res == ERROR_SUCCESS && list->iid; ++list) {
118 WCHAR buf[39];
119 HKEY iid_key;
121 StringFromGUID2(list->iid, buf, 39);
122 res = RegCreateKeyExW(interface_key, buf, 0, NULL, 0,
123 KEY_READ | KEY_WRITE, NULL, &iid_key, NULL);
124 if (res != ERROR_SUCCESS) goto error_close_interface_key;
126 if (list->name) {
127 res = RegSetValueExA(iid_key, NULL, 0, REG_SZ,
128 (CONST BYTE*)(list->name),
129 strlen(list->name) + 1);
130 if (res != ERROR_SUCCESS) goto error_close_iid_key;
133 if (list->base_iid) {
134 res = register_key_guid(iid_key, base_ifa_keyname, list->base_iid);
135 if (res != ERROR_SUCCESS) goto error_close_iid_key;
138 if (0 <= list->num_methods) {
139 static WCHAR const fmt[3] = { '%', 'd', 0 };
140 HKEY key;
142 res = RegCreateKeyExW(iid_key, num_methods_keyname, 0, NULL, 0,
143 KEY_READ | KEY_WRITE, NULL, &key, NULL);
144 if (res != ERROR_SUCCESS) goto error_close_iid_key;
146 sprintfW(buf, fmt, list->num_methods);
147 res = RegSetValueExW(key, NULL, 0, REG_SZ,
148 (CONST BYTE*)buf,
149 (lstrlenW(buf) + 1) * sizeof(WCHAR));
150 RegCloseKey(key);
152 if (res != ERROR_SUCCESS) goto error_close_iid_key;
155 if (list->ps_clsid) {
156 res = register_key_guid(iid_key, ps_clsid_keyname, list->ps_clsid);
157 if (res != ERROR_SUCCESS) goto error_close_iid_key;
160 if (list->ps_clsid32) {
161 res = register_key_guid(iid_key, ps_clsid32_keyname, list->ps_clsid32);
162 if (res != ERROR_SUCCESS) goto error_close_iid_key;
165 error_close_iid_key:
166 RegCloseKey(iid_key);
169 error_close_interface_key:
170 RegCloseKey(interface_key);
171 error_return:
172 return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
175 /***********************************************************************
176 * unregister_interfaces
178 static HRESULT unregister_interfaces(struct regsvr_interface const *list) {
179 LONG res = ERROR_SUCCESS;
180 HKEY interface_key;
182 res = RegOpenKeyExW(HKEY_CLASSES_ROOT, interface_keyname, 0,
183 KEY_READ | KEY_WRITE, &interface_key);
184 if (res == ERROR_FILE_NOT_FOUND) return S_OK;
185 if (res != ERROR_SUCCESS) goto error_return;
187 for (; res == ERROR_SUCCESS && list->iid; ++list) {
188 WCHAR buf[39];
190 StringFromGUID2(list->iid, buf, 39);
191 res = RegDeleteTreeW(interface_key, buf);
192 if (res == ERROR_FILE_NOT_FOUND) res = ERROR_SUCCESS;
195 RegCloseKey(interface_key);
196 error_return:
197 return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
200 /***********************************************************************
201 * register_coclasses
203 static HRESULT register_coclasses(struct regsvr_coclass const *list) {
204 LONG res = ERROR_SUCCESS;
205 HKEY coclass_key;
207 res = RegCreateKeyExW(HKEY_CLASSES_ROOT, clsid_keyname, 0, NULL, 0,
208 KEY_READ | KEY_WRITE, NULL, &coclass_key, NULL);
209 if (res != ERROR_SUCCESS) goto error_return;
211 for (; res == ERROR_SUCCESS && list->clsid; ++list) {
212 WCHAR buf[39];
213 HKEY clsid_key;
215 StringFromGUID2(list->clsid, buf, 39);
216 res = RegCreateKeyExW(coclass_key, buf, 0, NULL, 0,
217 KEY_READ | KEY_WRITE, NULL, &clsid_key, NULL);
218 if (res != ERROR_SUCCESS) goto error_close_coclass_key;
220 if (list->name) {
221 res = RegSetValueExA(clsid_key, NULL, 0, REG_SZ,
222 (CONST BYTE*)(list->name),
223 strlen(list->name) + 1);
224 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
227 if (list->ips) {
228 res = register_key_defvalueA(clsid_key, ips_keyname, list->ips);
229 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
232 if (list->ips32) {
233 HKEY ips32_key;
235 res = RegCreateKeyExW(clsid_key, ips32_keyname, 0, NULL, 0,
236 KEY_READ | KEY_WRITE, NULL,
237 &ips32_key, NULL);
238 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
240 res = RegSetValueExA(ips32_key, NULL, 0, REG_SZ,
241 (CONST BYTE*)list->ips32,
242 lstrlenA(list->ips32) + 1);
243 if (res == ERROR_SUCCESS && list->ips32_tmodel)
244 res = RegSetValueExA(ips32_key, tmodel_valuename, 0, REG_SZ,
245 (CONST BYTE*)list->ips32_tmodel,
246 strlen(list->ips32_tmodel) + 1);
247 RegCloseKey(ips32_key);
248 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
251 if (list->progid) {
252 res = register_key_defvalueA(clsid_key, progid_keyname,
253 list->progid);
254 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
256 res = register_progid(buf, list->progid, NULL,
257 list->name, list->progid_extra);
258 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
261 if (list->viprogid) {
262 res = register_key_defvalueA(clsid_key, viprogid_keyname,
263 list->viprogid);
264 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
266 res = register_progid(buf, list->viprogid, list->progid,
267 list->name, list->progid_extra);
268 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
271 error_close_clsid_key:
272 RegCloseKey(clsid_key);
275 error_close_coclass_key:
276 RegCloseKey(coclass_key);
277 error_return:
278 return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
281 /***********************************************************************
282 * unregister_coclasses
284 static HRESULT unregister_coclasses(struct regsvr_coclass const *list) {
285 LONG res = ERROR_SUCCESS;
286 HKEY coclass_key;
288 res = RegOpenKeyExW(HKEY_CLASSES_ROOT, clsid_keyname, 0,
289 KEY_READ | KEY_WRITE, &coclass_key);
290 if (res == ERROR_FILE_NOT_FOUND) return S_OK;
291 if (res != ERROR_SUCCESS) goto error_return;
293 for (; res == ERROR_SUCCESS && list->clsid; ++list) {
294 WCHAR buf[39];
296 StringFromGUID2(list->clsid, buf, 39);
297 res = RegDeleteTreeW(coclass_key, buf);
298 if (res == ERROR_FILE_NOT_FOUND) res = ERROR_SUCCESS;
299 if (res != ERROR_SUCCESS) goto error_close_coclass_key;
301 if (list->progid) {
302 res = RegDeleteTreeA(HKEY_CLASSES_ROOT, list->progid);
303 if (res == ERROR_FILE_NOT_FOUND) res = ERROR_SUCCESS;
304 if (res != ERROR_SUCCESS) goto error_close_coclass_key;
307 if (list->viprogid) {
308 res = RegDeleteTreeA(HKEY_CLASSES_ROOT, list->viprogid);
309 if (res == ERROR_FILE_NOT_FOUND) res = ERROR_SUCCESS;
310 if (res != ERROR_SUCCESS) goto error_close_coclass_key;
314 error_close_coclass_key:
315 RegCloseKey(coclass_key);
316 error_return:
317 return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
320 /***********************************************************************
321 * regsvr_key_guid
323 static LONG register_key_guid(HKEY base, WCHAR const *name, GUID const *guid) {
324 WCHAR buf[39];
326 StringFromGUID2(guid, buf, 39);
327 return register_key_defvalueW(base, name, buf);
330 /***********************************************************************
331 * regsvr_key_defvalueW
333 static LONG register_key_defvalueW(
334 HKEY base,
335 WCHAR const *name,
336 WCHAR const *value) {
337 LONG res;
338 HKEY key;
340 res = RegCreateKeyExW(base, name, 0, NULL, 0,
341 KEY_READ | KEY_WRITE, NULL, &key, NULL);
342 if (res != ERROR_SUCCESS) return res;
343 res = RegSetValueExW(key, NULL, 0, REG_SZ, (CONST BYTE*)value,
344 (lstrlenW(value) + 1) * sizeof(WCHAR));
345 RegCloseKey(key);
346 return res;
349 /***********************************************************************
350 * regsvr_key_defvalueA
352 static LONG register_key_defvalueA(
353 HKEY base,
354 WCHAR const *name,
355 char const *value) {
356 LONG res;
357 HKEY key;
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 = RegSetValueExA(key, NULL, 0, REG_SZ, (CONST BYTE*)value,
363 lstrlenA(value) + 1);
364 RegCloseKey(key);
365 return res;
368 /***********************************************************************
369 * regsvr_progid
371 static LONG register_progid(
372 WCHAR const *clsid,
373 char const *progid,
374 char const *curver_progid,
375 char const *name,
376 char const *extra) {
377 LONG res;
378 HKEY progid_key;
380 res = RegCreateKeyExA(HKEY_CLASSES_ROOT, progid, 0,
381 NULL, 0, KEY_READ | KEY_WRITE, NULL,
382 &progid_key, NULL);
383 if (res != ERROR_SUCCESS) return res;
385 if (name) {
386 res = RegSetValueExA(progid_key, NULL, 0, REG_SZ,
387 (CONST BYTE*)name, strlen(name) + 1);
388 if (res != ERROR_SUCCESS) goto error_close_progid_key;
391 if (clsid) {
392 res = register_key_defvalueW(progid_key, clsid_keyname, clsid);
393 if (res != ERROR_SUCCESS) goto error_close_progid_key;
396 if (curver_progid) {
397 res = register_key_defvalueA(progid_key, curver_keyname,
398 curver_progid);
399 if (res != ERROR_SUCCESS) goto error_close_progid_key;
402 if (extra) {
403 HKEY extra_key;
405 res = RegCreateKeyExA(progid_key, extra, 0,
406 NULL, 0, KEY_READ | KEY_WRITE, NULL,
407 &extra_key, NULL);
408 if (res == ERROR_SUCCESS)
409 RegCloseKey(extra_key);
412 error_close_progid_key:
413 RegCloseKey(progid_key);
414 return res;
417 /***********************************************************************
418 * coclass list
420 static struct regsvr_coclass const coclass_list[] = {
421 { &CLSID_DirectMusicSection,
422 "DirectMusicSection",
423 NULL,
424 "dmstyle.dll",
425 "Both",
426 "Microsoft.DirectMusicSection.1",
427 "Microsoft.DirectMusicSection"
429 { &CLSID_DirectMusicStyle,
430 "DirectMusicStyle",
431 NULL,
432 "dmstyle.dll",
433 "Both",
434 "Microsoft.DirectMusicStyle.1",
435 "Microsoft.DirectMusicStyle"
437 { &CLSID_DirectMusicChordTrack,
438 "DirectMusicChordTrack",
439 NULL,
440 "dmstyle.dll",
441 "Both",
442 "Microsoft.DirectMusicChordTrack.1",
443 "Microsoft.DirectMusicChordTrack"
445 { &CLSID_DirectMusicCommandTrack,
446 "DirectMusicCommandTrack",
447 NULL,
448 "dmstyle.dll",
449 "Both",
450 "Microsoft.DirectMusicCommandTrack.1",
451 "Microsoft.DirectMusicCommandTrack"
453 { &CLSID_DirectMusicStyleTrack,
454 "DirectMusicStyleTrack",
455 NULL,
456 "dmstyle.dll",
457 "Both",
458 "Microsoft.DirectMusicStyleTrack.1",
459 "Microsoft.DirectMusicStyleTrack"
461 { &CLSID_DirectMusicMotifTrack,
462 "DirectMusicMotifTrack",
463 NULL,
464 "dmstyle.dll",
465 "Both",
466 "Microsoft.DirectMusicMotifTrack.1",
467 "Microsoft.DirectMusicMotifTrack"
469 { &CLSID_DirectMusicAuditionTrack,
470 "DirectMusicAuditionTrack",
471 NULL,
472 "dmstyle.dll",
473 "Both",
474 "Microsoft.DirectMusicAuditionTrack.1",
475 "Microsoft.DirectMusicAuditionTrack"
477 { &CLSID_DirectMusicMuteTrack,
478 "DirectMusicMuteTrack",
479 NULL,
480 "dmstyle.dll",
481 "Both",
482 "Microsoft.DirectMusicMuteTrack.1",
483 "Microsoft.DirectMusicMuteTrack"
485 { &CLSID_DirectMusicMelodyFormulationTrack,
486 "DirectMusicMelodyFormulationTrack",
487 NULL,
488 "dmstyle.dll",
489 "Both",
490 "Microsoft.DirectMusicMelodyFormulationTrack.1",
491 "Microsoft.DirectMusicMelodyFormulationTrack"
493 { NULL } /* list terminator */
496 /***********************************************************************
497 * interface list
500 static struct regsvr_interface const interface_list[] = {
501 { NULL } /* list terminator */
504 /***********************************************************************
505 * DllRegisterServer (DMSTYLE.3)
507 HRESULT WINAPI DllRegisterServer(void) {
508 HRESULT hr;
510 TRACE("\n");
512 hr = register_coclasses(coclass_list);
513 if (SUCCEEDED(hr))
514 hr = register_interfaces(interface_list);
515 return hr;
518 /***********************************************************************
519 * DllUnregisterServer (DMSTYLE.4)
521 HRESULT WINAPI DllUnregisterServer(void) {
522 HRESULT hr;
524 TRACE("\n");
526 hr = unregister_coclasses(coclass_list);
527 if (SUCCEEDED(hr))
528 hr = unregister_interfaces(interface_list);
529 return hr;