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
21 * - Implements ICreateDevEnum interface which creates an IEnumMoniker
23 * - Also creates the special registry keys created at run-time
26 #define NONAMELESSSTRUCT
27 #define NONAMELESSUNION
29 #include "devenum_private.h"
32 #include "wine/debug.h"
33 #include "wine/unicode.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
,
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
);
71 FIXME("- no interface\n\tIID:\t%s\n", debugstr_guid(riid
));
75 /**********************************************************************
76 * DEVENUM_ICreateDevEnum_AddRef (also IUnknown)
78 static ULONG WINAPI
DEVENUM_ICreateDevEnum_AddRef(ICreateDevEnum
* iface
)
84 return 2; /* non-heap based object */
87 /**********************************************************************
88 * DEVENUM_ICreateDevEnum_Release (also IUnknown)
90 static ULONG WINAPI
DEVENUM_ICreateDevEnum_Release(ICreateDevEnum
* iface
)
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
,
108 WCHAR wszRegKey
[MAX_PATH
];
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
));
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
;
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();
154 if (RegOpenKeyW(hbasekey
, wszRegKey
, &hkey
) != ERROR_SUCCESS
)
156 ERR("Couldn't open registry key for special device: %s\n",
157 debugstr_guid(clsidDeviceClass
));
163 FIXME("Category %s not found\n", debugstr_guid(clsidDeviceClass
));
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
];
197 HKEY hkeyDummy
= NULL
;
199 strcpyW(wszRegKey
, wszActiveMovieKey
);
201 if (!StringFromGUID2(clsidCategory
, wszRegKey
+ strlenW(wszRegKey
), sizeof(wszRegKey
)/sizeof(wszRegKey
[0]) - strlenW(wszRegKey
)))
206 LONG lRes
= RegCreateKeyW(HKEY_CURRENT_USER
, wszRegKey
, &hkeyDummy
);
207 res
= HRESULT_FROM_WIN32(lRes
);
211 RegCloseKey(hkeyDummy
);
214 ERR("Failed to create key HKEY_CURRENT_USER\\%s\n", debugstr_w(wszRegKey
));
219 /**********************************************************************
220 * DEVENUM_CreateSpecialCategories (INTERNAL)
222 * Creates the keys in the registry for the dynamic categories
224 static HRESULT
DEVENUM_CreateSpecialCategories(void)
227 WCHAR szDSoundNameFormat
[MAX_PATH
+ 1];
228 WCHAR szDSoundName
[MAX_PATH
+ 1];
229 DWORD iDefaultDevice
= -1;
231 IFilterMapper2
* pMapper
= NULL
;
236 rf2
.dwMerit
= MERIT_PREFERRED
;
238 rf2
.u
.s1
.rgPins2
= &rfp2
;
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
261 REGPINTYPES
* pTypes
;
263 numDevs
= waveOutGetNumDevs();
265 res
= DEVENUM_CreateAMCategoryKey(&CLSID_AudioRendererCategory
);
266 if (FAILED(res
)) /* can't register any devices in this category */
269 rfp2
.dwFlags
= REG_PINFLAG_B_RENDERER
;
270 for (i
= 0; i
< numDevs
; i
++)
272 if (waveOutGetDevCapsW(i
, &wocaps
, sizeof(WAVEOUTCAPSW
))
275 IMoniker
* pMoniker
= NULL
;
277 rfp2
.nMediaTypes
= 1;
278 pTypes
= CoTaskMemAlloc(rfp2
.nMediaTypes
* sizeof(REGPINTYPES
));
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
,
295 &CLSID_AudioRendererCategory
,
299 /* FIXME: do additional stuff with IMoniker here, depending on what RegisterFilter does */
302 IMoniker_Release(pMoniker
);
304 wsprintfW(szDSoundName
, szDSoundNameFormat
, wocaps
.szPname
);
305 res
= IFilterMapper2_RegisterFilter(pMapper
,
309 &CLSID_AudioRendererCategory
,
313 /* FIXME: do additional stuff with IMoniker here, depending on what RegisterFilter does */
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 */
333 rfp2
.dwFlags
= REG_PINFLAG_B_OUTPUT
;
334 for (i
= 0; i
< numDevs
; i
++)
336 if (waveInGetDevCapsW(i
, &wicaps
, sizeof(WAVEINCAPSW
))
339 IMoniker
* pMoniker
= NULL
;
341 rfp2
.nMediaTypes
= 1;
342 pTypes
= CoTaskMemAlloc(rfp2
.nMediaTypes
* sizeof(REGPINTYPES
));
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
,
359 &CLSID_AudioInputDeviceCategory
,
363 /* FIXME: do additional stuff with IMoniker here, depending on what RegisterFilter does */
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 */
378 rfp2
.dwFlags
= REG_PINFLAG_B_RENDERER
;
379 for (i
= 0; i
< numDevs
; i
++)
381 if (midiOutGetDevCapsW(i
, &mocaps
, sizeof(MIDIOUTCAPSW
))
384 IMoniker
* pMoniker
= NULL
;
386 rfp2
.nMediaTypes
= 1;
387 pTypes
= CoTaskMemAlloc(rfp2
.nMediaTypes
* sizeof(REGPINTYPES
));
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
,
404 &CLSID_MidiRendererCategory
,
408 /* FIXME: do additional stuff with IMoniker here, depending on what RegisterFilter does */
409 /* Native version sets MidiOutId */
412 IMoniker_Release(pMoniker
);
414 if (i
== iDefaultDevice
)
416 FIXME("Default device\n");
419 CoTaskMemFree(pTypes
);
422 res
= DEVENUM_CreateAMCategoryKey(&CLSID_VideoInputDeviceCategory
);
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
));
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
,
454 &CLSID_VideoInputDeviceCategory
,
459 OLECHAR wszVfwIndex
[] = { 'V','F','W','I','n','d','e','x',0 };
462 V_UNION(&var
, ulVal
) = i
;
463 res
= IMoniker_BindToStorage(pMoniker
, NULL
, NULL
, &IID_IPropertyBag
, (LPVOID
)&pPropBag
);
465 res
= IPropertyBag_Write(pPropBag
, wszVfwIndex
, &var
);
466 IMoniker_Release(pMoniker
);
469 if (i
== iDefaultDevice
) FIXME("Default device\n");
470 CoTaskMemFree(pTypes
);
476 IFilterMapper2_Release(pMapper
);