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};
47 static const WCHAR wszFilterKeyName
[] = {'F','i','l','t','e','r',0};
48 static const WCHAR wszMeritName
[] = {'M','e','r','i','t',0};
49 static const WCHAR wszPins
[] = {'P','i','n','s',0};
50 static const WCHAR wszAllowedMany
[] = {'A','l','l','o','w','e','d','M','a','n','y',0};
51 static const WCHAR wszAllowedZero
[] = {'A','l','l','o','w','e','d','Z','e','r','o',0};
52 static const WCHAR wszDirection
[] = {'D','i','r','e','c','t','i','o','n',0};
53 static const WCHAR wszIsRendered
[] = {'I','s','R','e','n','d','e','r','e','d',0};
54 static const WCHAR wszTypes
[] = {'T','y','p','e','s',0};
56 static ULONG WINAPI
DEVENUM_ICreateDevEnum_AddRef(ICreateDevEnum
* iface
);
57 static HRESULT
DEVENUM_CreateSpecialCategories(void);
59 /**********************************************************************
60 * DEVENUM_ICreateDevEnum_QueryInterface (also IUnknown)
62 static HRESULT WINAPI
DEVENUM_ICreateDevEnum_QueryInterface(ICreateDevEnum
*iface
, REFIID riid
,
65 TRACE("(%p)->(%s, %p)\n", iface
, debugstr_guid(riid
), ppv
);
70 if (IsEqualGUID(riid
, &IID_IUnknown
) ||
71 IsEqualGUID(riid
, &IID_ICreateDevEnum
))
74 DEVENUM_ICreateDevEnum_AddRef(iface
);
78 FIXME("- no interface IID: %s\n", debugstr_guid(riid
));
83 /**********************************************************************
84 * DEVENUM_ICreateDevEnum_AddRef (also IUnknown)
86 static ULONG WINAPI
DEVENUM_ICreateDevEnum_AddRef(ICreateDevEnum
* iface
)
92 return 2; /* non-heap based object */
95 /**********************************************************************
96 * DEVENUM_ICreateDevEnum_Release (also IUnknown)
98 static ULONG WINAPI
DEVENUM_ICreateDevEnum_Release(ICreateDevEnum
* iface
)
102 DEVENUM_UnlockModule();
104 return 1; /* non-heap based object */
107 HRESULT
DEVENUM_GetCategoryKey(REFCLSID clsidDeviceClass
, HKEY
*pBaseKey
, WCHAR
*wszRegKeyName
, UINT maxLen
)
109 if (IsEqualGUID(clsidDeviceClass
, &CLSID_AudioRendererCategory
) ||
110 IsEqualGUID(clsidDeviceClass
, &CLSID_AudioInputDeviceCategory
) ||
111 IsEqualGUID(clsidDeviceClass
, &CLSID_VideoInputDeviceCategory
) ||
112 IsEqualGUID(clsidDeviceClass
, &CLSID_MidiRendererCategory
))
114 *pBaseKey
= HKEY_CURRENT_USER
;
115 strcpyW(wszRegKeyName
, wszActiveMovieKey
);
117 if (!StringFromGUID2(clsidDeviceClass
, wszRegKeyName
+ strlenW(wszRegKeyName
), maxLen
- strlenW(wszRegKeyName
)))
118 return E_OUTOFMEMORY
;
122 *pBaseKey
= HKEY_CLASSES_ROOT
;
123 strcpyW(wszRegKeyName
, clsid_keyname
);
124 strcatW(wszRegKeyName
, wszRegSeparator
);
126 if (!StringFromGUID2(clsidDeviceClass
, wszRegKeyName
+ CLSID_STR_LEN
, maxLen
- CLSID_STR_LEN
))
127 return E_OUTOFMEMORY
;
129 strcatW(wszRegKeyName
, wszRegSeparator
);
130 strcatW(wszRegKeyName
, wszInstanceKeyName
);
136 static void DEVENUM_ReadPinTypes(HKEY hkeyPinKey
, REGFILTERPINS
*rgPin
)
138 HKEY hkeyTypes
= NULL
;
139 DWORD dwMajorTypes
, i
;
140 REGPINTYPES
*lpMediaType
= NULL
;
141 DWORD dwMediaTypeSize
= 0;
143 if (RegOpenKeyExW(hkeyPinKey
, wszTypes
, 0, KEY_READ
, &hkeyTypes
) != ERROR_SUCCESS
)
146 if (RegQueryInfoKeyW(hkeyTypes
, NULL
, NULL
, NULL
, &dwMajorTypes
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
)
149 RegCloseKey(hkeyTypes
);
153 for (i
= 0; i
< dwMajorTypes
; i
++)
155 HKEY hkeyMajorType
= NULL
;
156 WCHAR wszMajorTypeName
[64];
157 DWORD cName
= sizeof(wszMajorTypeName
) / sizeof(WCHAR
);
158 DWORD dwMinorTypes
, i1
;
160 if (RegEnumKeyExW(hkeyTypes
, i
, wszMajorTypeName
, &cName
, NULL
, NULL
, NULL
, NULL
) != ERROR_SUCCESS
) continue;
162 if (RegOpenKeyExW(hkeyTypes
, wszMajorTypeName
, 0, KEY_READ
, &hkeyMajorType
) != ERROR_SUCCESS
) continue;
164 if (RegQueryInfoKeyW(hkeyMajorType
, NULL
, NULL
, NULL
, &dwMinorTypes
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
)
167 RegCloseKey(hkeyMajorType
);
171 for (i1
= 0; i1
< dwMinorTypes
; i1
++)
173 WCHAR wszMinorTypeName
[64];
174 CLSID
*clsMajorType
= NULL
, *clsMinorType
= NULL
;
177 cName
= sizeof(wszMinorTypeName
) / sizeof(WCHAR
);
178 if (RegEnumKeyExW(hkeyMajorType
, i1
, wszMinorTypeName
, &cName
, NULL
, NULL
, NULL
, NULL
) != ERROR_SUCCESS
) continue;
180 clsMinorType
= CoTaskMemAlloc(sizeof(CLSID
));
181 if (!clsMinorType
) continue;
183 clsMajorType
= CoTaskMemAlloc(sizeof(CLSID
));
184 if (!clsMajorType
) goto error_cleanup_types
;
186 hr
= CLSIDFromString(wszMinorTypeName
, clsMinorType
);
187 if (FAILED(hr
)) goto error_cleanup_types
;
189 hr
= CLSIDFromString(wszMajorTypeName
, clsMajorType
);
190 if (FAILED(hr
)) goto error_cleanup_types
;
192 if (rgPin
->nMediaTypes
== dwMediaTypeSize
)
194 DWORD dwNewSize
= dwMediaTypeSize
+ (dwMediaTypeSize
< 2 ? 1 : dwMediaTypeSize
/ 2);
195 REGPINTYPES
*lpNewMediaType
;
197 lpNewMediaType
= CoTaskMemRealloc(lpMediaType
, sizeof(REGPINTYPES
) * dwNewSize
);
198 if (!lpNewMediaType
) goto error_cleanup_types
;
200 lpMediaType
= lpNewMediaType
;
201 dwMediaTypeSize
= dwNewSize
;
204 lpMediaType
[rgPin
->nMediaTypes
].clsMajorType
= clsMajorType
;
205 lpMediaType
[rgPin
->nMediaTypes
].clsMinorType
= clsMinorType
;
206 rgPin
->nMediaTypes
++;
211 if (clsMajorType
) CoTaskMemFree(clsMajorType
);
212 if (clsMinorType
) CoTaskMemFree(clsMinorType
);
215 RegCloseKey(hkeyMajorType
);
218 RegCloseKey(hkeyTypes
);
220 if (lpMediaType
&& !rgPin
->nMediaTypes
)
222 CoTaskMemFree(lpMediaType
);
226 rgPin
->lpMediaType
= lpMediaType
;
229 static void DEVENUM_ReadPins(HKEY hkeyFilterClass
, REGFILTER2
*rgf2
)
231 HKEY hkeyPins
= NULL
;
232 DWORD dwPinsSubkeys
, i
;
233 REGFILTERPINS
*rgPins
= NULL
;
235 if (RegOpenKeyExW(hkeyFilterClass
, wszPins
, 0, KEY_READ
, &hkeyPins
) != ERROR_SUCCESS
)
238 if (RegQueryInfoKeyW(hkeyPins
, NULL
, NULL
, NULL
, &dwPinsSubkeys
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
)
241 RegCloseKey(hkeyPins
);
247 rgPins
= CoTaskMemAlloc(sizeof(REGFILTERPINS
) * dwPinsSubkeys
);
250 RegCloseKey(hkeyPins
);
255 for (i
= 0; i
< dwPinsSubkeys
; i
++)
257 HKEY hkeyPinKey
= NULL
;
258 WCHAR wszPinName
[MAX_PATH
];
259 DWORD cName
= sizeof(wszPinName
) / sizeof(WCHAR
);
261 REGFILTERPINS
*rgPin
= &rgPins
[rgf2
->u
.s1
.cPins
];
264 rgPin
->strName
= NULL
;
265 rgPin
->clsConnectsToFilter
= &GUID_NULL
;
266 rgPin
->strConnectsToPin
= NULL
;
267 rgPin
->nMediaTypes
= 0;
268 rgPin
->lpMediaType
= NULL
;
270 if (RegEnumKeyExW(hkeyPins
, i
, wszPinName
, &cName
, NULL
, NULL
, NULL
, NULL
) != ERROR_SUCCESS
) continue;
272 if (RegOpenKeyExW(hkeyPins
, wszPinName
, 0, KEY_READ
, &hkeyPinKey
) != ERROR_SUCCESS
) continue;
274 rgPin
->strName
= CoTaskMemAlloc((strlenW(wszPinName
) + 1) * sizeof(WCHAR
));
275 if (!rgPin
->strName
) goto error_cleanup
;
277 strcpyW(rgPin
->strName
, wszPinName
);
279 cbData
= sizeof(rgPin
->bMany
);
280 lRet
= RegQueryValueExW(hkeyPinKey
, wszAllowedMany
, NULL
, &Type
, (LPBYTE
)&rgPin
->bMany
, &cbData
);
281 if (lRet
!= ERROR_SUCCESS
|| Type
!= REG_DWORD
)
284 cbData
= sizeof(rgPin
->bZero
);
285 lRet
= RegQueryValueExW(hkeyPinKey
, wszAllowedZero
, NULL
, &Type
, (LPBYTE
)&rgPin
->bZero
, &cbData
);
286 if (lRet
!= ERROR_SUCCESS
|| Type
!= REG_DWORD
)
289 cbData
= sizeof(rgPin
->bOutput
);
290 lRet
= RegQueryValueExW(hkeyPinKey
, wszDirection
, NULL
, &Type
, (LPBYTE
)&rgPin
->bOutput
, &cbData
);
291 if (lRet
!= ERROR_SUCCESS
|| Type
!= REG_DWORD
)
294 cbData
= sizeof(rgPin
->bRendered
);
295 lRet
= RegQueryValueExW(hkeyPinKey
, wszIsRendered
, NULL
, &Type
, (LPBYTE
)&rgPin
->bRendered
, &cbData
);
296 if (lRet
!= ERROR_SUCCESS
|| Type
!= REG_DWORD
)
299 DEVENUM_ReadPinTypes(hkeyPinKey
, rgPin
);
306 RegCloseKey(hkeyPinKey
);
307 if (rgPin
->strName
) CoTaskMemFree(rgPin
->strName
);
310 RegCloseKey(hkeyPins
);
312 if (rgPins
&& !rgf2
->u
.s1
.cPins
)
314 CoTaskMemFree(rgPins
);
318 rgf2
->u
.s1
.rgPins
= rgPins
;
321 static HRESULT
DEVENUM_RegisterLegacyAmFilters(void)
323 HKEY hkeyFilter
= NULL
;
324 DWORD dwFilterSubkeys
, i
;
326 IFilterMapper2
*pMapper
= NULL
;
329 hr
= CoCreateInstance(&CLSID_FilterMapper2
, NULL
, CLSCTX_INPROC
,
330 &IID_IFilterMapper2
, (void **) &pMapper
);
333 lRet
= RegOpenKeyExW(HKEY_CLASSES_ROOT
, wszFilterKeyName
, 0, KEY_READ
, &hkeyFilter
);
334 hr
= HRESULT_FROM_WIN32(lRet
);
339 lRet
= RegQueryInfoKeyW(hkeyFilter
, NULL
, NULL
, NULL
, &dwFilterSubkeys
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
);
340 hr
= HRESULT_FROM_WIN32(lRet
);
345 for (i
= 0; i
< dwFilterSubkeys
; i
++)
347 WCHAR wszFilterSubkeyName
[64];
348 DWORD cName
= sizeof(wszFilterSubkeyName
) / sizeof(WCHAR
);
349 HKEY hkeyCategoryBaseKey
;
350 WCHAR wszRegKey
[MAX_PATH
];
351 HKEY hkeyInstance
= NULL
;
353 if (RegEnumKeyExW(hkeyFilter
, i
, wszFilterSubkeyName
, &cName
, NULL
, NULL
, NULL
, NULL
) != ERROR_SUCCESS
) continue;
355 hr
= DEVENUM_GetCategoryKey(&CLSID_LegacyAmFilterCategory
, &hkeyCategoryBaseKey
, wszRegKey
, MAX_PATH
);
356 if (FAILED(hr
)) continue;
358 strcatW(wszRegKey
, wszRegSeparator
);
359 strcatW(wszRegKey
, wszFilterSubkeyName
);
361 if (RegOpenKeyExW(HKEY_CLASSES_ROOT
, wszRegKey
, 0, KEY_READ
, &hkeyInstance
) == ERROR_SUCCESS
)
363 RegCloseKey(hkeyInstance
);
367 /* Filter is registered the IFilterMapper(1)-way in HKCR\Filter. Needs to be added to
368 * legacy am filter category. */
369 HKEY hkeyFilterClass
= NULL
;
372 WCHAR wszFilterName
[MAX_PATH
];
376 IMoniker
*pMoniker
= NULL
;
378 TRACE("Registering %s\n", debugstr_w(wszFilterSubkeyName
));
380 strcpyW(wszRegKey
, clsid_keyname
);
381 strcatW(wszRegKey
, wszRegSeparator
);
382 strcatW(wszRegKey
, wszFilterSubkeyName
);
384 if (RegOpenKeyExW(HKEY_CLASSES_ROOT
, wszRegKey
, 0, KEY_READ
, &hkeyFilterClass
) != ERROR_SUCCESS
)
390 rgf2
.u
.s1
.rgPins
= NULL
;
392 cbData
= sizeof(wszFilterName
);
393 if (RegQueryValueExW(hkeyFilterClass
, NULL
, NULL
, &Type
, (LPBYTE
)wszFilterName
, &cbData
) != ERROR_SUCCESS
||
397 cbData
= sizeof(rgf2
.dwMerit
);
398 if (RegQueryValueExW(hkeyFilterClass
, wszMeritName
, NULL
, &Type
, (LPBYTE
)&rgf2
.dwMerit
, &cbData
) != ERROR_SUCCESS
||
402 DEVENUM_ReadPins(hkeyFilterClass
, &rgf2
);
404 res
= CLSIDFromString(wszFilterSubkeyName
, &clsidFilter
);
405 if (FAILED(res
)) goto cleanup
;
407 IFilterMapper2_RegisterFilter(pMapper
, &clsidFilter
, wszFilterName
, &pMoniker
, NULL
, NULL
, &rgf2
);
410 IMoniker_Release(pMoniker
);
414 if (hkeyFilterClass
) RegCloseKey(hkeyFilterClass
);
416 if (rgf2
.u
.s1
.rgPins
)
420 for (iPin
= 0; iPin
< rgf2
.u
.s1
.cPins
; iPin
++)
422 CoTaskMemFree(rgf2
.u
.s1
.rgPins
[iPin
].strName
);
424 if (rgf2
.u
.s1
.rgPins
[iPin
].lpMediaType
)
428 for (iType
= 0; iType
< rgf2
.u
.s1
.rgPins
[iPin
].nMediaTypes
; iType
++)
430 CoTaskMemFree((void*)rgf2
.u
.s1
.rgPins
[iPin
].lpMediaType
[iType
].clsMajorType
);
431 CoTaskMemFree((void*)rgf2
.u
.s1
.rgPins
[iPin
].lpMediaType
[iType
].clsMinorType
);
434 CoTaskMemFree((void*)rgf2
.u
.s1
.rgPins
[iPin
].lpMediaType
);
438 CoTaskMemFree((void*)rgf2
.u
.s1
.rgPins
);
444 if (hkeyFilter
) RegCloseKey(hkeyFilter
);
447 IFilterMapper2_Release(pMapper
);
452 /**********************************************************************
453 * DEVENUM_ICreateDevEnum_CreateClassEnumerator
455 static HRESULT WINAPI
DEVENUM_ICreateDevEnum_CreateClassEnumerator(
456 ICreateDevEnum
* iface
,
457 REFCLSID clsidDeviceClass
,
458 IEnumMoniker
**ppEnumMoniker
,
461 WCHAR wszRegKey
[MAX_PATH
];
466 TRACE("(%p)->(%s, %p, %x)\n", iface
, debugstr_guid(clsidDeviceClass
), ppEnumMoniker
, dwFlags
);
471 *ppEnumMoniker
= NULL
;
473 if (IsEqualGUID(clsidDeviceClass
, &CLSID_LegacyAmFilterCategory
))
475 DEVENUM_RegisterLegacyAmFilters();
478 hr
= DEVENUM_GetCategoryKey(clsidDeviceClass
, &hbasekey
, wszRegKey
, MAX_PATH
);
482 if (IsEqualGUID(clsidDeviceClass
, &CLSID_AudioRendererCategory
) ||
483 IsEqualGUID(clsidDeviceClass
, &CLSID_AudioInputDeviceCategory
) ||
484 IsEqualGUID(clsidDeviceClass
, &CLSID_VideoInputDeviceCategory
) ||
485 IsEqualGUID(clsidDeviceClass
, &CLSID_MidiRendererCategory
))
487 hr
= DEVENUM_CreateSpecialCategories();
490 if (RegOpenKeyW(hbasekey
, wszRegKey
, &hkey
) != ERROR_SUCCESS
)
492 ERR("Couldn't open registry key for special device: %s\n",
493 debugstr_guid(clsidDeviceClass
));
497 else if (RegOpenKeyW(hbasekey
, wszRegKey
, &hkey
) != ERROR_SUCCESS
)
499 FIXME("Category %s not found\n", debugstr_guid(clsidDeviceClass
));
503 return DEVENUM_IEnumMoniker_Construct(hkey
, ppEnumMoniker
);
506 /**********************************************************************
507 * ICreateDevEnum_Vtbl
509 static const ICreateDevEnumVtbl ICreateDevEnum_Vtbl
=
511 DEVENUM_ICreateDevEnum_QueryInterface
,
512 DEVENUM_ICreateDevEnum_AddRef
,
513 DEVENUM_ICreateDevEnum_Release
,
514 DEVENUM_ICreateDevEnum_CreateClassEnumerator
,
517 /**********************************************************************
518 * static CreateDevEnum instance
520 ICreateDevEnum DEVENUM_CreateDevEnum
= { &ICreateDevEnum_Vtbl
};
522 /**********************************************************************
523 * DEVENUM_CreateAMCategoryKey (INTERNAL)
525 * Creates a registry key for a category at HKEY_CURRENT_USER\Software\
526 * Microsoft\ActiveMovie\devenum\{clsid}
528 static HRESULT
DEVENUM_CreateAMCategoryKey(const CLSID
* clsidCategory
)
530 WCHAR wszRegKey
[MAX_PATH
];
532 HKEY hkeyDummy
= NULL
;
534 strcpyW(wszRegKey
, wszActiveMovieKey
);
536 if (!StringFromGUID2(clsidCategory
, wszRegKey
+ strlenW(wszRegKey
), sizeof(wszRegKey
)/sizeof(wszRegKey
[0]) - strlenW(wszRegKey
)))
541 LONG lRes
= RegCreateKeyW(HKEY_CURRENT_USER
, wszRegKey
, &hkeyDummy
);
542 res
= HRESULT_FROM_WIN32(lRes
);
546 RegCloseKey(hkeyDummy
);
549 ERR("Failed to create key HKEY_CURRENT_USER\\%s\n", debugstr_w(wszRegKey
));
554 static HANDLE DEVENUM_populate_handle
;
555 static const WCHAR DEVENUM_populate_handle_nameW
[] =
556 {'_','_','W','I','N','E','_',
557 'D','e','v','e','n','u','m','_',
558 'P','o','p','u','l','a','t','e',0};
560 /**********************************************************************
561 * DEVENUM_CreateSpecialCategories (INTERNAL)
563 * Creates the keys in the registry for the dynamic categories
565 static HRESULT
DEVENUM_CreateSpecialCategories(void)
568 WCHAR szDSoundNameFormat
[MAX_PATH
+ 1];
569 WCHAR szDSoundName
[MAX_PATH
+ 1];
570 DWORD iDefaultDevice
= -1;
572 IFilterMapper2
* pMapper
= NULL
;
575 WCHAR path
[MAX_PATH
];
578 if (DEVENUM_populate_handle
)
580 DEVENUM_populate_handle
= CreateEventW(NULL
, TRUE
, FALSE
, DEVENUM_populate_handle_nameW
);
581 if (GetLastError() == ERROR_ALREADY_EXISTS
)
583 /* Webcams can take some time to scan if the driver is badly written and it enables them,
584 * so have a 10 s timeout here
586 if (WaitForSingleObject(DEVENUM_populate_handle
, 10000) == WAIT_TIMEOUT
)
587 WARN("Waiting for object timed out\n");
588 TRACE("No need to rescan\n");
591 TRACE("Scanning for devices\n");
593 /* Since devices can change between session, for example because you just plugged in a webcam
594 * or switched from pulseaudio to alsa, delete all old devices first
596 if (SUCCEEDED(DEVENUM_GetCategoryKey(&CLSID_AudioRendererCategory
, &basekey
, path
, MAX_PATH
)))
597 RegDeleteTreeW(basekey
, path
);
598 if (SUCCEEDED(DEVENUM_GetCategoryKey(&CLSID_AudioInputDeviceCategory
, &basekey
, path
, MAX_PATH
)))
599 RegDeleteTreeW(basekey
, path
);
600 if (SUCCEEDED(DEVENUM_GetCategoryKey(&CLSID_VideoInputDeviceCategory
, &basekey
, path
, MAX_PATH
)))
601 RegDeleteTreeW(basekey
, path
);
602 if (SUCCEEDED(DEVENUM_GetCategoryKey(&CLSID_MidiRendererCategory
, &basekey
, path
, MAX_PATH
)))
603 RegDeleteTreeW(basekey
, path
);
606 rf2
.dwMerit
= MERIT_PREFERRED
;
608 rf2
.u
.s2
.rgPins2
= &rfp2
;
611 rfp2
.lpMedium
= NULL
;
612 rfp2
.clsPinCategory
= &IID_NULL
;
614 if (!LoadStringW(DEVENUM_hInstance
, IDS_DEVENUM_DS
, szDSoundNameFormat
, sizeof(szDSoundNameFormat
)/sizeof(szDSoundNameFormat
[0])-1))
616 ERR("Couldn't get string resource (GetLastError() is %d)\n", GetLastError());
617 return HRESULT_FROM_WIN32(GetLastError());
620 res
= CoCreateInstance(&CLSID_FilterMapper2
, NULL
, CLSCTX_INPROC
,
621 &IID_IFilterMapper2
, (void **) &pMapper
);
623 * Fill in info for devices
631 REGPINTYPES
* pTypes
;
633 numDevs
= waveOutGetNumDevs();
635 res
= DEVENUM_CreateAMCategoryKey(&CLSID_AudioRendererCategory
);
636 if (FAILED(res
)) /* can't register any devices in this category */
639 rfp2
.dwFlags
= REG_PINFLAG_B_RENDERER
;
640 for (i
= 0; i
< numDevs
; i
++)
642 if (waveOutGetDevCapsW(i
, &wocaps
, sizeof(WAVEOUTCAPSW
))
645 IMoniker
* pMoniker
= NULL
;
647 rfp2
.nMediaTypes
= 1;
648 pTypes
= CoTaskMemAlloc(rfp2
.nMediaTypes
* sizeof(REGPINTYPES
));
651 IFilterMapper2_Release(pMapper
);
652 return E_OUTOFMEMORY
;
654 /* FIXME: Native devenum seems to register a lot more types for
655 * DSound than we do. Not sure what purpose they serve */
656 pTypes
[0].clsMajorType
= &MEDIATYPE_Audio
;
657 pTypes
[0].clsMinorType
= &MEDIASUBTYPE_PCM
;
659 rfp2
.lpMediaType
= pTypes
;
661 res
= IFilterMapper2_RegisterFilter(pMapper
,
665 &CLSID_AudioRendererCategory
,
669 /* FIXME: do additional stuff with IMoniker here, depending on what RegisterFilter does */
673 IMoniker_Release(pMoniker
);
677 wsprintfW(szDSoundName
, szDSoundNameFormat
, wocaps
.szPname
);
678 res
= IFilterMapper2_RegisterFilter(pMapper
,
682 &CLSID_AudioRendererCategory
,
686 /* FIXME: do additional stuff with IMoniker here, depending on what RegisterFilter does */
689 IMoniker_Release(pMoniker
);
691 if (i
== iDefaultDevice
)
693 FIXME("Default device\n");
696 CoTaskMemFree(pTypes
);
700 numDevs
= waveInGetNumDevs();
702 res
= DEVENUM_CreateAMCategoryKey(&CLSID_AudioInputDeviceCategory
);
703 if (FAILED(res
)) /* can't register any devices in this category */
706 rfp2
.dwFlags
= REG_PINFLAG_B_OUTPUT
;
707 for (i
= 0; i
< numDevs
; i
++)
709 if (waveInGetDevCapsW(i
, &wicaps
, sizeof(WAVEINCAPSW
))
712 IMoniker
* pMoniker
= NULL
;
714 rfp2
.nMediaTypes
= 1;
715 pTypes
= CoTaskMemAlloc(rfp2
.nMediaTypes
* sizeof(REGPINTYPES
));
718 IFilterMapper2_Release(pMapper
);
719 return E_OUTOFMEMORY
;
722 /* FIXME: Not sure if these are correct */
723 pTypes
[0].clsMajorType
= &MEDIATYPE_Audio
;
724 pTypes
[0].clsMinorType
= &MEDIASUBTYPE_PCM
;
726 rfp2
.lpMediaType
= pTypes
;
728 res
= IFilterMapper2_RegisterFilter(pMapper
,
732 &CLSID_AudioInputDeviceCategory
,
736 /* FIXME: do additional stuff with IMoniker here, depending on what RegisterFilter does */
739 IMoniker_Release(pMoniker
);
741 CoTaskMemFree(pTypes
);
745 numDevs
= midiOutGetNumDevs();
747 res
= DEVENUM_CreateAMCategoryKey(&CLSID_MidiRendererCategory
);
748 if (FAILED(res
)) /* can't register any devices in this category */
751 rfp2
.dwFlags
= REG_PINFLAG_B_RENDERER
;
752 for (i
= 0; i
< numDevs
; i
++)
754 if (midiOutGetDevCapsW(i
, &mocaps
, sizeof(MIDIOUTCAPSW
))
757 IMoniker
* pMoniker
= NULL
;
759 rfp2
.nMediaTypes
= 1;
760 pTypes
= CoTaskMemAlloc(rfp2
.nMediaTypes
* sizeof(REGPINTYPES
));
763 IFilterMapper2_Release(pMapper
);
764 return E_OUTOFMEMORY
;
767 /* FIXME: Not sure if these are correct */
768 pTypes
[0].clsMajorType
= &MEDIATYPE_Midi
;
769 pTypes
[0].clsMinorType
= &MEDIASUBTYPE_None
;
771 rfp2
.lpMediaType
= pTypes
;
773 res
= IFilterMapper2_RegisterFilter(pMapper
,
774 &CLSID_AVIMIDIRender
,
777 &CLSID_MidiRendererCategory
,
781 /* FIXME: do additional stuff with IMoniker here, depending on what RegisterFilter does */
782 /* Native version sets MidiOutId */
785 IMoniker_Release(pMoniker
);
787 if (i
== iDefaultDevice
)
789 FIXME("Default device\n");
792 CoTaskMemFree(pTypes
);
795 res
= DEVENUM_CreateAMCategoryKey(&CLSID_VideoInputDeviceCategory
);
797 for (i
= 0; i
< 10; i
++)
799 WCHAR szDeviceName
[32], szDeviceVersion
[32], szDevicePath
[10];
801 if (capGetDriverDescriptionW ((WORD
) i
,
802 szDeviceName
, sizeof(szDeviceName
)/sizeof(WCHAR
),
803 szDeviceVersion
, sizeof(szDeviceVersion
)/sizeof(WCHAR
)))
805 IMoniker
* pMoniker
= NULL
;
806 IPropertyBag
* pPropBag
= NULL
;
807 WCHAR dprintf
[] = { 'v','i','d','e','o','%','d',0 };
808 snprintfW(szDevicePath
, sizeof(szDevicePath
)/sizeof(WCHAR
), dprintf
, i
);
809 /* The above code prevents 1 device with a different ID overwriting another */
811 rfp2
.nMediaTypes
= 1;
812 pTypes
= CoTaskMemAlloc(rfp2
.nMediaTypes
* sizeof(REGPINTYPES
));
814 IFilterMapper2_Release(pMapper
);
815 return E_OUTOFMEMORY
;
818 pTypes
[0].clsMajorType
= &MEDIATYPE_Video
;
819 pTypes
[0].clsMinorType
= &MEDIASUBTYPE_None
;
821 rfp2
.lpMediaType
= pTypes
;
823 res
= IFilterMapper2_RegisterFilter(pMapper
,
827 &CLSID_VideoInputDeviceCategory
,
832 OLECHAR wszVfwIndex
[] = { 'V','F','W','I','n','d','e','x',0 };
835 V_UNION(&var
, ulVal
) = i
;
836 res
= IMoniker_BindToStorage(pMoniker
, NULL
, NULL
, &IID_IPropertyBag
, (LPVOID
)&pPropBag
);
838 res
= IPropertyBag_Write(pPropBag
, wszVfwIndex
, &var
);
839 IMoniker_Release(pMoniker
);
842 if (i
== iDefaultDevice
) FIXME("Default device\n");
843 CoTaskMemFree(pTypes
);
849 IFilterMapper2_Release(pMapper
);
850 SetEvent(DEVENUM_populate_handle
);