dpnet: Assign to structs instead of using memcpy.
[wine.git] / dlls / devenum / createdevenum.c
blob11efca23b536e007c1a474e3bc3a8f0f48fe55a1
1 /*
2 * ICreateDevEnum implementation for DEVENUM.dll
4 * Copyright (C) 2002 Robert Shearman
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
20 * NOTES ON THIS FILE:
21 * - Implements ICreateDevEnum interface which creates an IEnumMoniker
22 * implementation
23 * - Also creates the special registry keys created at run-time
26 #define NONAMELESSSTRUCT
27 #define NONAMELESSUNION
29 #include "devenum_private.h"
30 #include "vfw.h"
32 #include "wine/debug.h"
33 #include "wine/unicode.h"
34 #include "mmddk.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(devenum);
38 extern HINSTANCE DEVENUM_hInstance;
40 const WCHAR wszInstanceKeyName[] ={'I','n','s','t','a','n','c','e',0};
42 static const WCHAR wszRegSeparator[] = {'\\', 0 };
43 static const WCHAR wszActiveMovieKey[] = {'S','o','f','t','w','a','r','e','\\',
44 'M','i','c','r','o','s','o','f','t','\\',
45 'A','c','t','i','v','e','M','o','v','i','e','\\',
46 'd','e','v','e','n','u','m','\\',0};
48 static ULONG WINAPI DEVENUM_ICreateDevEnum_AddRef(ICreateDevEnum * iface);
49 static HRESULT DEVENUM_CreateSpecialCategories(void);
51 /**********************************************************************
52 * DEVENUM_ICreateDevEnum_QueryInterface (also IUnknown)
54 static HRESULT WINAPI DEVENUM_ICreateDevEnum_QueryInterface(
55 ICreateDevEnum * iface,
56 REFIID riid,
57 LPVOID *ppvObj)
59 TRACE("\n\tIID:\t%s\n",debugstr_guid(riid));
61 if (ppvObj == NULL) return E_POINTER;
63 if (IsEqualGUID(riid, &IID_IUnknown) ||
64 IsEqualGUID(riid, &IID_ICreateDevEnum))
66 *ppvObj = (LPVOID)iface;
67 DEVENUM_ICreateDevEnum_AddRef(iface);
68 return S_OK;
71 FIXME("- no interface\n\tIID:\t%s\n", debugstr_guid(riid));
72 return E_NOINTERFACE;
75 /**********************************************************************
76 * DEVENUM_ICreateDevEnum_AddRef (also IUnknown)
78 static ULONG WINAPI DEVENUM_ICreateDevEnum_AddRef(ICreateDevEnum * iface)
80 TRACE("\n");
82 DEVENUM_LockModule();
84 return 2; /* non-heap based object */
87 /**********************************************************************
88 * DEVENUM_ICreateDevEnum_Release (also IUnknown)
90 static ULONG WINAPI DEVENUM_ICreateDevEnum_Release(ICreateDevEnum * iface)
92 TRACE("\n");
94 DEVENUM_UnlockModule();
96 return 1; /* non-heap based object */
99 /**********************************************************************
100 * DEVENUM_ICreateDevEnum_CreateClassEnumerator
102 HRESULT WINAPI DEVENUM_ICreateDevEnum_CreateClassEnumerator(
103 ICreateDevEnum * iface,
104 REFCLSID clsidDeviceClass,
105 IEnumMoniker **ppEnumMoniker,
106 DWORD dwFlags)
108 WCHAR wszRegKey[MAX_PATH];
109 HKEY hkey;
110 HKEY hbasekey;
111 CreateDevEnumImpl *This = (CreateDevEnumImpl *)iface;
113 TRACE("(%p)->(%s, %p, %x)\n\tDeviceClass:\t%s\n", This, debugstr_guid(clsidDeviceClass), ppEnumMoniker, dwFlags, debugstr_guid(clsidDeviceClass));
115 if (!ppEnumMoniker)
116 return E_POINTER;
118 *ppEnumMoniker = NULL;
120 if (IsEqualGUID(clsidDeviceClass, &CLSID_AudioRendererCategory) ||
121 IsEqualGUID(clsidDeviceClass, &CLSID_AudioInputDeviceCategory) ||
122 IsEqualGUID(clsidDeviceClass, &CLSID_VideoInputDeviceCategory) ||
123 IsEqualGUID(clsidDeviceClass, &CLSID_MidiRendererCategory))
125 hbasekey = HKEY_CURRENT_USER;
126 strcpyW(wszRegKey, wszActiveMovieKey);
128 if (!StringFromGUID2(clsidDeviceClass, wszRegKey + strlenW(wszRegKey), MAX_PATH - strlenW(wszRegKey)))
129 return E_OUTOFMEMORY;
131 else
133 hbasekey = HKEY_CLASSES_ROOT;
134 strcpyW(wszRegKey, clsid_keyname);
135 strcatW(wszRegKey, wszRegSeparator);
137 if (!StringFromGUID2(clsidDeviceClass, wszRegKey + CLSID_STR_LEN, MAX_PATH - CLSID_STR_LEN))
138 return E_OUTOFMEMORY;
140 strcatW(wszRegKey, wszRegSeparator);
141 strcatW(wszRegKey, wszInstanceKeyName);
144 if (RegOpenKeyW(hbasekey, wszRegKey, &hkey) != ERROR_SUCCESS)
146 if (IsEqualGUID(clsidDeviceClass, &CLSID_AudioRendererCategory) ||
147 IsEqualGUID(clsidDeviceClass, &CLSID_AudioInputDeviceCategory) ||
148 IsEqualGUID(clsidDeviceClass, &CLSID_VideoInputDeviceCategory) ||
149 IsEqualGUID(clsidDeviceClass, &CLSID_MidiRendererCategory))
151 HRESULT hr = DEVENUM_CreateSpecialCategories();
152 if (FAILED(hr))
153 return hr;
154 if (RegOpenKeyW(hbasekey, wszRegKey, &hkey) != ERROR_SUCCESS)
156 ERR("Couldn't open registry key for special device: %s\n",
157 debugstr_guid(clsidDeviceClass));
158 return S_FALSE;
161 else
163 FIXME("Category %s not found\n", debugstr_guid(clsidDeviceClass));
164 return S_FALSE;
168 return DEVENUM_IEnumMoniker_Construct(hkey, ppEnumMoniker);
171 /**********************************************************************
172 * ICreateDevEnum_Vtbl
174 static const ICreateDevEnumVtbl ICreateDevEnum_Vtbl =
176 DEVENUM_ICreateDevEnum_QueryInterface,
177 DEVENUM_ICreateDevEnum_AddRef,
178 DEVENUM_ICreateDevEnum_Release,
179 DEVENUM_ICreateDevEnum_CreateClassEnumerator,
182 /**********************************************************************
183 * static CreateDevEnum instance
185 CreateDevEnumImpl DEVENUM_CreateDevEnum = { &ICreateDevEnum_Vtbl };
187 /**********************************************************************
188 * DEVENUM_CreateAMCategoryKey (INTERNAL)
190 * Creates a registry key for a category at HKEY_CURRENT_USER\Software\
191 * Microsoft\ActiveMovie\devenum\{clsid}
193 static HRESULT DEVENUM_CreateAMCategoryKey(const CLSID * clsidCategory)
195 WCHAR wszRegKey[MAX_PATH];
196 HRESULT res = S_OK;
197 HKEY hkeyDummy = NULL;
199 strcpyW(wszRegKey, wszActiveMovieKey);
201 if (!StringFromGUID2(clsidCategory, wszRegKey + strlenW(wszRegKey), sizeof(wszRegKey)/sizeof(wszRegKey[0]) - strlenW(wszRegKey)))
202 res = E_INVALIDARG;
204 if (SUCCEEDED(res))
206 LONG lRes = RegCreateKeyW(HKEY_CURRENT_USER, wszRegKey, &hkeyDummy);
207 res = HRESULT_FROM_WIN32(lRes);
210 if (hkeyDummy)
211 RegCloseKey(hkeyDummy);
213 if (FAILED(res))
214 ERR("Failed to create key HKEY_CURRENT_USER\\%s\n", debugstr_w(wszRegKey));
216 return res;
219 /**********************************************************************
220 * DEVENUM_CreateSpecialCategories (INTERNAL)
222 * Creates the keys in the registry for the dynamic categories
224 static HRESULT DEVENUM_CreateSpecialCategories(void)
226 HRESULT res;
227 WCHAR szDSoundNameFormat[MAX_PATH + 1];
228 WCHAR szDSoundName[MAX_PATH + 1];
229 DWORD iDefaultDevice = -1;
230 UINT numDevs;
231 IFilterMapper2 * pMapper = NULL;
232 REGFILTER2 rf2;
233 REGFILTERPINS2 rfp2;
235 rf2.dwVersion = 2;
236 rf2.dwMerit = MERIT_PREFERRED;
237 rf2.u.s1.cPins2 = 1;
238 rf2.u.s1.rgPins2 = &rfp2;
239 rfp2.cInstances = 1;
240 rfp2.nMediums = 0;
241 rfp2.lpMedium = NULL;
242 rfp2.clsPinCategory = &IID_NULL;
244 if (!LoadStringW(DEVENUM_hInstance, IDS_DEVENUM_DS, szDSoundNameFormat, sizeof(szDSoundNameFormat)/sizeof(szDSoundNameFormat[0])-1))
246 ERR("Couldn't get string resource (GetLastError() is %d)\n", GetLastError());
247 return HRESULT_FROM_WIN32(GetLastError());
250 res = CoCreateInstance(&CLSID_FilterMapper2, NULL, CLSCTX_INPROC,
251 &IID_IFilterMapper2, (void **) &pMapper);
253 * Fill in info for devices
255 if (SUCCEEDED(res))
257 UINT i;
258 WAVEOUTCAPSW wocaps;
259 WAVEINCAPSW wicaps;
260 MIDIOUTCAPSW mocaps;
261 REGPINTYPES * pTypes;
263 numDevs = waveOutGetNumDevs();
265 res = DEVENUM_CreateAMCategoryKey(&CLSID_AudioRendererCategory);
266 if (FAILED(res)) /* can't register any devices in this category */
267 numDevs = 0;
269 rfp2.dwFlags = REG_PINFLAG_B_RENDERER;
270 for (i = 0; i < numDevs; i++)
272 if (waveOutGetDevCapsW(i, &wocaps, sizeof(WAVEOUTCAPSW))
273 == MMSYSERR_NOERROR)
275 IMoniker * pMoniker = NULL;
277 rfp2.nMediaTypes = 1;
278 pTypes = CoTaskMemAlloc(rfp2.nMediaTypes * sizeof(REGPINTYPES));
279 if (!pTypes)
281 IFilterMapper2_Release(pMapper);
282 return E_OUTOFMEMORY;
284 /* FIXME: Native devenum seems to register a lot more types for
285 * DSound than we do. Not sure what purpose they serve */
286 pTypes[0].clsMajorType = &MEDIATYPE_Audio;
287 pTypes[0].clsMinorType = &MEDIASUBTYPE_PCM;
289 rfp2.lpMediaType = pTypes;
291 res = IFilterMapper2_RegisterFilter(pMapper,
292 &CLSID_AudioRender,
293 wocaps.szPname,
294 &pMoniker,
295 &CLSID_AudioRendererCategory,
296 wocaps.szPname,
297 &rf2);
299 /* FIXME: do additional stuff with IMoniker here, depending on what RegisterFilter does */
301 if (pMoniker)
302 IMoniker_Release(pMoniker);
304 wsprintfW(szDSoundName, szDSoundNameFormat, wocaps.szPname);
305 res = IFilterMapper2_RegisterFilter(pMapper,
306 &CLSID_DSoundRender,
307 szDSoundName,
308 &pMoniker,
309 &CLSID_AudioRendererCategory,
310 szDSoundName,
311 &rf2);
313 /* FIXME: do additional stuff with IMoniker here, depending on what RegisterFilter does */
315 if (pMoniker)
316 IMoniker_Release(pMoniker);
318 if (i == iDefaultDevice)
320 FIXME("Default device\n");
323 CoTaskMemFree(pTypes);
327 numDevs = waveInGetNumDevs();
329 res = DEVENUM_CreateAMCategoryKey(&CLSID_AudioInputDeviceCategory);
330 if (FAILED(res)) /* can't register any devices in this category */
331 numDevs = 0;
333 rfp2.dwFlags = REG_PINFLAG_B_OUTPUT;
334 for (i = 0; i < numDevs; i++)
336 if (waveInGetDevCapsW(i, &wicaps, sizeof(WAVEINCAPSW))
337 == MMSYSERR_NOERROR)
339 IMoniker * pMoniker = NULL;
341 rfp2.nMediaTypes = 1;
342 pTypes = CoTaskMemAlloc(rfp2.nMediaTypes * sizeof(REGPINTYPES));
343 if (!pTypes)
345 IFilterMapper2_Release(pMapper);
346 return E_OUTOFMEMORY;
349 /* FIXME: Not sure if these are correct */
350 pTypes[0].clsMajorType = &MEDIATYPE_Audio;
351 pTypes[0].clsMinorType = &MEDIASUBTYPE_PCM;
353 rfp2.lpMediaType = pTypes;
355 res = IFilterMapper2_RegisterFilter(pMapper,
356 &CLSID_AudioRecord,
357 wicaps.szPname,
358 &pMoniker,
359 &CLSID_AudioInputDeviceCategory,
360 wicaps.szPname,
361 &rf2);
363 /* FIXME: do additional stuff with IMoniker here, depending on what RegisterFilter does */
365 if (pMoniker)
366 IMoniker_Release(pMoniker);
368 CoTaskMemFree(pTypes);
372 numDevs = midiOutGetNumDevs();
374 res = DEVENUM_CreateAMCategoryKey(&CLSID_MidiRendererCategory);
375 if (FAILED(res)) /* can't register any devices in this category */
376 numDevs = 0;
378 rfp2.dwFlags = REG_PINFLAG_B_RENDERER;
379 for (i = 0; i < numDevs; i++)
381 if (midiOutGetDevCapsW(i, &mocaps, sizeof(MIDIOUTCAPSW))
382 == MMSYSERR_NOERROR)
384 IMoniker * pMoniker = NULL;
386 rfp2.nMediaTypes = 1;
387 pTypes = CoTaskMemAlloc(rfp2.nMediaTypes * sizeof(REGPINTYPES));
388 if (!pTypes)
390 IFilterMapper2_Release(pMapper);
391 return E_OUTOFMEMORY;
394 /* FIXME: Not sure if these are correct */
395 pTypes[0].clsMajorType = &MEDIATYPE_Midi;
396 pTypes[0].clsMinorType = &MEDIASUBTYPE_None;
398 rfp2.lpMediaType = pTypes;
400 res = IFilterMapper2_RegisterFilter(pMapper,
401 &CLSID_AVIMIDIRender,
402 mocaps.szPname,
403 &pMoniker,
404 &CLSID_MidiRendererCategory,
405 mocaps.szPname,
406 &rf2);
408 /* FIXME: do additional stuff with IMoniker here, depending on what RegisterFilter does */
409 /* Native version sets MidiOutId */
411 if (pMoniker)
412 IMoniker_Release(pMoniker);
414 if (i == iDefaultDevice)
416 FIXME("Default device\n");
419 CoTaskMemFree(pTypes);
422 res = DEVENUM_CreateAMCategoryKey(&CLSID_VideoInputDeviceCategory);
423 if (SUCCEEDED(res))
424 for (i = 0; i < 10; i++)
426 WCHAR szDeviceName[32], szDeviceVersion[32], szDevicePath[10];
428 if (capGetDriverDescriptionW ((WORD) i,
429 szDeviceName, sizeof(szDeviceName)/sizeof(WCHAR),
430 szDeviceVersion, sizeof(szDeviceVersion)/sizeof(WCHAR)))
432 IMoniker * pMoniker = NULL;
433 IPropertyBag * pPropBag = NULL;
434 WCHAR dprintf[] = { 'v','i','d','e','o','%','d',0 };
435 snprintfW(szDevicePath, sizeof(szDevicePath)/sizeof(WCHAR), dprintf, i);
436 /* The above code prevents 1 device with a different ID overwriting another */
438 rfp2.nMediaTypes = 1;
439 pTypes = CoTaskMemAlloc(rfp2.nMediaTypes * sizeof(REGPINTYPES));
440 if (!pTypes) {
441 IFilterMapper2_Release(pMapper);
442 return E_OUTOFMEMORY;
445 pTypes[0].clsMajorType = &MEDIATYPE_Video;
446 pTypes[0].clsMinorType = &MEDIASUBTYPE_None;
448 rfp2.lpMediaType = pTypes;
450 res = IFilterMapper2_RegisterFilter(pMapper,
451 &CLSID_VfwCapture,
452 szDeviceName,
453 &pMoniker,
454 &CLSID_VideoInputDeviceCategory,
455 szDevicePath,
456 &rf2);
458 if (pMoniker) {
459 OLECHAR wszVfwIndex[] = { 'V','F','W','I','n','d','e','x',0 };
460 VARIANT var;
461 V_VT(&var) = VT_I4;
462 V_UNION(&var, ulVal) = i;
463 res = IMoniker_BindToStorage(pMoniker, NULL, NULL, &IID_IPropertyBag, (LPVOID)&pPropBag);
464 if (SUCCEEDED(res))
465 res = IPropertyBag_Write(pPropBag, wszVfwIndex, &var);
466 IMoniker_Release(pMoniker);
469 if (i == iDefaultDevice) FIXME("Default device\n");
470 CoTaskMemFree(pTypes);
475 if (pMapper)
476 IFilterMapper2_Release(pMapper);
477 return res;