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(
63 ICreateDevEnum
* iface
,
67 TRACE("\n\tIID:\t%s\n",debugstr_guid(riid
));
69 if (ppvObj
== NULL
) return E_POINTER
;
71 if (IsEqualGUID(riid
, &IID_IUnknown
) ||
72 IsEqualGUID(riid
, &IID_ICreateDevEnum
))
75 DEVENUM_ICreateDevEnum_AddRef(iface
);
79 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 DWORD cName
= sizeof(wszMinorTypeName
) / sizeof(WCHAR
);
175 CLSID
*clsMajorType
= NULL
, *clsMinorType
= NULL
;
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
.s
.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
.s
.cPins
)
314 CoTaskMemFree(rgPins
);
318 rgf2
->u
.s
.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
;
354 if (RegEnumKeyExW(hkeyFilter
, i
, wszFilterSubkeyName
, &cName
, NULL
, NULL
, NULL
, NULL
) != ERROR_SUCCESS
) continue;
356 hr
= DEVENUM_GetCategoryKey(&CLSID_LegacyAmFilterCategory
, &hkeyCategoryBaseKey
, wszRegKey
, MAX_PATH
);
357 if (FAILED(hr
)) continue;
359 strcatW(wszRegKey
, wszRegSeparator
);
360 strcatW(wszRegKey
, wszFilterSubkeyName
);
362 if (RegOpenKeyExW(HKEY_CLASSES_ROOT
, wszRegKey
, 0, KEY_READ
, &hkeyInstance
) == ERROR_SUCCESS
)
364 RegCloseKey(hkeyInstance
);
368 /* Filter is registered the IFilterMapper(1)-way in HKCR\Filter. Needs to be added to
369 * legacy am filter category. */
370 HKEY hkeyFilterClass
= NULL
;
373 WCHAR wszFilterName
[MAX_PATH
];
377 IMoniker
*pMoniker
= NULL
;
379 TRACE("Registering %s\n", debugstr_w(wszFilterSubkeyName
));
381 strcpyW(wszRegKey
, clsid_keyname
);
382 strcatW(wszRegKey
, wszRegSeparator
);
383 strcatW(wszRegKey
, wszFilterSubkeyName
);
385 if (RegOpenKeyExW(HKEY_CLASSES_ROOT
, wszRegKey
, 0, KEY_READ
, &hkeyFilterClass
) != ERROR_SUCCESS
)
391 rgf2
.u
.s
.rgPins
= NULL
;
393 cbData
= sizeof(wszFilterName
);
394 if (RegQueryValueExW(hkeyFilterClass
, NULL
, NULL
, &Type
, (LPBYTE
)wszFilterName
, &cbData
) != ERROR_SUCCESS
||
398 cbData
= sizeof(rgf2
.dwMerit
);
399 if (RegQueryValueExW(hkeyFilterClass
, wszMeritName
, NULL
, &Type
, (LPBYTE
)&rgf2
.dwMerit
, &cbData
) != ERROR_SUCCESS
||
403 DEVENUM_ReadPins(hkeyFilterClass
, &rgf2
);
405 res
= CLSIDFromString(wszFilterSubkeyName
, &clsidFilter
);
406 if (FAILED(res
)) goto cleanup
;
408 IFilterMapper2_RegisterFilter(pMapper
, &clsidFilter
, wszFilterName
, &pMoniker
, NULL
, NULL
, &rgf2
);
411 IMoniker_Release(pMoniker
);
415 if (hkeyFilterClass
) RegCloseKey(hkeyFilterClass
);
421 for (iPin
= 0; iPin
< rgf2
.u
.s
.cPins
; iPin
++)
423 CoTaskMemFree(rgf2
.u
.s
.rgPins
[iPin
].strName
);
425 if (rgf2
.u
.s
.rgPins
[iPin
].lpMediaType
)
429 for (iType
= 0; iType
< rgf2
.u
.s
.rgPins
[iPin
].nMediaTypes
; iType
++)
431 CoTaskMemFree((void*)rgf2
.u
.s
.rgPins
[iPin
].lpMediaType
[iType
].clsMajorType
);
432 CoTaskMemFree((void*)rgf2
.u
.s
.rgPins
[iPin
].lpMediaType
[iType
].clsMinorType
);
435 CoTaskMemFree((void*)rgf2
.u
.s
.rgPins
[iPin
].lpMediaType
);
439 CoTaskMemFree((void*)rgf2
.u
.s
.rgPins
);
445 if (hkeyFilter
) RegCloseKey(hkeyFilter
);
448 IFilterMapper2_Release(pMapper
);
453 /**********************************************************************
454 * DEVENUM_ICreateDevEnum_CreateClassEnumerator
456 static HRESULT WINAPI
DEVENUM_ICreateDevEnum_CreateClassEnumerator(
457 ICreateDevEnum
* iface
,
458 REFCLSID clsidDeviceClass
,
459 IEnumMoniker
**ppEnumMoniker
,
462 WCHAR wszRegKey
[MAX_PATH
];
466 CreateDevEnumImpl
*This
= (CreateDevEnumImpl
*)iface
;
468 TRACE("(%p)->(%s, %p, %x)\n\tDeviceClass:\t%s\n", This
, debugstr_guid(clsidDeviceClass
), ppEnumMoniker
, dwFlags
, debugstr_guid(clsidDeviceClass
));
473 *ppEnumMoniker
= NULL
;
475 if (IsEqualGUID(clsidDeviceClass
, &CLSID_LegacyAmFilterCategory
))
477 DEVENUM_RegisterLegacyAmFilters();
480 hr
= DEVENUM_GetCategoryKey(clsidDeviceClass
, &hbasekey
, wszRegKey
, MAX_PATH
);
484 if (IsEqualGUID(clsidDeviceClass
, &CLSID_AudioRendererCategory
) ||
485 IsEqualGUID(clsidDeviceClass
, &CLSID_AudioInputDeviceCategory
) ||
486 IsEqualGUID(clsidDeviceClass
, &CLSID_VideoInputDeviceCategory
) ||
487 IsEqualGUID(clsidDeviceClass
, &CLSID_MidiRendererCategory
))
489 hr
= DEVENUM_CreateSpecialCategories();
492 if (RegOpenKeyW(hbasekey
, wszRegKey
, &hkey
) != ERROR_SUCCESS
)
494 ERR("Couldn't open registry key for special device: %s\n",
495 debugstr_guid(clsidDeviceClass
));
499 else if (RegOpenKeyW(hbasekey
, wszRegKey
, &hkey
) != ERROR_SUCCESS
)
501 FIXME("Category %s not found\n", debugstr_guid(clsidDeviceClass
));
505 return DEVENUM_IEnumMoniker_Construct(hkey
, ppEnumMoniker
);
508 /**********************************************************************
509 * ICreateDevEnum_Vtbl
511 static const ICreateDevEnumVtbl ICreateDevEnum_Vtbl
=
513 DEVENUM_ICreateDevEnum_QueryInterface
,
514 DEVENUM_ICreateDevEnum_AddRef
,
515 DEVENUM_ICreateDevEnum_Release
,
516 DEVENUM_ICreateDevEnum_CreateClassEnumerator
,
519 /**********************************************************************
520 * static CreateDevEnum instance
522 CreateDevEnumImpl DEVENUM_CreateDevEnum
= { &ICreateDevEnum_Vtbl
};
524 /**********************************************************************
525 * DEVENUM_CreateAMCategoryKey (INTERNAL)
527 * Creates a registry key for a category at HKEY_CURRENT_USER\Software\
528 * Microsoft\ActiveMovie\devenum\{clsid}
530 static HRESULT
DEVENUM_CreateAMCategoryKey(const CLSID
* clsidCategory
)
532 WCHAR wszRegKey
[MAX_PATH
];
534 HKEY hkeyDummy
= NULL
;
536 strcpyW(wszRegKey
, wszActiveMovieKey
);
538 if (!StringFromGUID2(clsidCategory
, wszRegKey
+ strlenW(wszRegKey
), sizeof(wszRegKey
)/sizeof(wszRegKey
[0]) - strlenW(wszRegKey
)))
543 LONG lRes
= RegCreateKeyW(HKEY_CURRENT_USER
, wszRegKey
, &hkeyDummy
);
544 res
= HRESULT_FROM_WIN32(lRes
);
548 RegCloseKey(hkeyDummy
);
551 ERR("Failed to create key HKEY_CURRENT_USER\\%s\n", debugstr_w(wszRegKey
));
556 static HANDLE DEVENUM_populate_handle
;
557 static const WCHAR DEVENUM_populate_handle_nameW
[] =
558 {'_','_','W','I','N','E','_',
559 'D','e','v','e','n','u','m','_',
560 'P','o','p','u','l','a','t','e',0};
562 /**********************************************************************
563 * DEVENUM_CreateSpecialCategories (INTERNAL)
565 * Creates the keys in the registry for the dynamic categories
567 static HRESULT
DEVENUM_CreateSpecialCategories(void)
570 WCHAR szDSoundNameFormat
[MAX_PATH
+ 1];
571 WCHAR szDSoundName
[MAX_PATH
+ 1];
572 DWORD iDefaultDevice
= -1;
574 IFilterMapper2
* pMapper
= NULL
;
577 WCHAR path
[MAX_PATH
];
580 if (DEVENUM_populate_handle
)
582 DEVENUM_populate_handle
= CreateEventW(NULL
, TRUE
, FALSE
, DEVENUM_populate_handle_nameW
);
583 if (GetLastError() == ERROR_ALREADY_EXISTS
)
585 /* Webcams can take some time to scan if the driver is badly written and it enables them,
586 * so have a 10 s timeout here
588 if (WaitForSingleObject(DEVENUM_populate_handle
, 10000) == WAIT_TIMEOUT
)
589 WARN("Waiting for object timed out\n");
590 TRACE("No need to rescan\n");
593 TRACE("Scanning for devices\n");
595 /* Since devices can change between session, for example because you just plugged in a webcam
596 * or switched from pulseaudio to alsa, delete all old devices first
598 if (SUCCEEDED(DEVENUM_GetCategoryKey(&CLSID_AudioRendererCategory
, &basekey
, path
, MAX_PATH
)))
599 RegDeleteTreeW(basekey
, path
);
600 if (SUCCEEDED(DEVENUM_GetCategoryKey(&CLSID_AudioInputDeviceCategory
, &basekey
, path
, MAX_PATH
)))
601 RegDeleteTreeW(basekey
, path
);
602 if (SUCCEEDED(DEVENUM_GetCategoryKey(&CLSID_VideoInputDeviceCategory
, &basekey
, path
, MAX_PATH
)))
603 RegDeleteTreeW(basekey
, path
);
604 if (SUCCEEDED(DEVENUM_GetCategoryKey(&CLSID_MidiRendererCategory
, &basekey
, path
, MAX_PATH
)))
605 RegDeleteTreeW(basekey
, path
);
608 rf2
.dwMerit
= MERIT_PREFERRED
;
610 rf2
.u
.s1
.rgPins2
= &rfp2
;
613 rfp2
.lpMedium
= NULL
;
614 rfp2
.clsPinCategory
= &IID_NULL
;
616 if (!LoadStringW(DEVENUM_hInstance
, IDS_DEVENUM_DS
, szDSoundNameFormat
, sizeof(szDSoundNameFormat
)/sizeof(szDSoundNameFormat
[0])-1))
618 ERR("Couldn't get string resource (GetLastError() is %d)\n", GetLastError());
619 return HRESULT_FROM_WIN32(GetLastError());
622 res
= CoCreateInstance(&CLSID_FilterMapper2
, NULL
, CLSCTX_INPROC
,
623 &IID_IFilterMapper2
, (void **) &pMapper
);
625 * Fill in info for devices
633 REGPINTYPES
* pTypes
;
635 numDevs
= waveOutGetNumDevs();
637 res
= DEVENUM_CreateAMCategoryKey(&CLSID_AudioRendererCategory
);
638 if (FAILED(res
)) /* can't register any devices in this category */
641 rfp2
.dwFlags
= REG_PINFLAG_B_RENDERER
;
642 for (i
= 0; i
< numDevs
; i
++)
644 if (waveOutGetDevCapsW(i
, &wocaps
, sizeof(WAVEOUTCAPSW
))
647 IMoniker
* pMoniker
= NULL
;
649 rfp2
.nMediaTypes
= 1;
650 pTypes
= CoTaskMemAlloc(rfp2
.nMediaTypes
* sizeof(REGPINTYPES
));
653 IFilterMapper2_Release(pMapper
);
654 return E_OUTOFMEMORY
;
656 /* FIXME: Native devenum seems to register a lot more types for
657 * DSound than we do. Not sure what purpose they serve */
658 pTypes
[0].clsMajorType
= &MEDIATYPE_Audio
;
659 pTypes
[0].clsMinorType
= &MEDIASUBTYPE_PCM
;
661 rfp2
.lpMediaType
= pTypes
;
663 res
= IFilterMapper2_RegisterFilter(pMapper
,
667 &CLSID_AudioRendererCategory
,
671 /* FIXME: do additional stuff with IMoniker here, depending on what RegisterFilter does */
674 IMoniker_Release(pMoniker
);
676 wsprintfW(szDSoundName
, szDSoundNameFormat
, wocaps
.szPname
);
677 res
= IFilterMapper2_RegisterFilter(pMapper
,
681 &CLSID_AudioRendererCategory
,
685 /* FIXME: do additional stuff with IMoniker here, depending on what RegisterFilter does */
688 IMoniker_Release(pMoniker
);
690 if (i
== iDefaultDevice
)
692 FIXME("Default device\n");
695 CoTaskMemFree(pTypes
);
699 numDevs
= waveInGetNumDevs();
701 res
= DEVENUM_CreateAMCategoryKey(&CLSID_AudioInputDeviceCategory
);
702 if (FAILED(res
)) /* can't register any devices in this category */
705 rfp2
.dwFlags
= REG_PINFLAG_B_OUTPUT
;
706 for (i
= 0; i
< numDevs
; i
++)
708 if (waveInGetDevCapsW(i
, &wicaps
, sizeof(WAVEINCAPSW
))
711 IMoniker
* pMoniker
= NULL
;
713 rfp2
.nMediaTypes
= 1;
714 pTypes
= CoTaskMemAlloc(rfp2
.nMediaTypes
* sizeof(REGPINTYPES
));
717 IFilterMapper2_Release(pMapper
);
718 return E_OUTOFMEMORY
;
721 /* FIXME: Not sure if these are correct */
722 pTypes
[0].clsMajorType
= &MEDIATYPE_Audio
;
723 pTypes
[0].clsMinorType
= &MEDIASUBTYPE_PCM
;
725 rfp2
.lpMediaType
= pTypes
;
727 res
= IFilterMapper2_RegisterFilter(pMapper
,
731 &CLSID_AudioInputDeviceCategory
,
735 /* FIXME: do additional stuff with IMoniker here, depending on what RegisterFilter does */
738 IMoniker_Release(pMoniker
);
740 CoTaskMemFree(pTypes
);
744 numDevs
= midiOutGetNumDevs();
746 res
= DEVENUM_CreateAMCategoryKey(&CLSID_MidiRendererCategory
);
747 if (FAILED(res
)) /* can't register any devices in this category */
750 rfp2
.dwFlags
= REG_PINFLAG_B_RENDERER
;
751 for (i
= 0; i
< numDevs
; i
++)
753 if (midiOutGetDevCapsW(i
, &mocaps
, sizeof(MIDIOUTCAPSW
))
756 IMoniker
* pMoniker
= NULL
;
758 rfp2
.nMediaTypes
= 1;
759 pTypes
= CoTaskMemAlloc(rfp2
.nMediaTypes
* sizeof(REGPINTYPES
));
762 IFilterMapper2_Release(pMapper
);
763 return E_OUTOFMEMORY
;
766 /* FIXME: Not sure if these are correct */
767 pTypes
[0].clsMajorType
= &MEDIATYPE_Midi
;
768 pTypes
[0].clsMinorType
= &MEDIASUBTYPE_None
;
770 rfp2
.lpMediaType
= pTypes
;
772 res
= IFilterMapper2_RegisterFilter(pMapper
,
773 &CLSID_AVIMIDIRender
,
776 &CLSID_MidiRendererCategory
,
780 /* FIXME: do additional stuff with IMoniker here, depending on what RegisterFilter does */
781 /* Native version sets MidiOutId */
784 IMoniker_Release(pMoniker
);
786 if (i
== iDefaultDevice
)
788 FIXME("Default device\n");
791 CoTaskMemFree(pTypes
);
794 res
= DEVENUM_CreateAMCategoryKey(&CLSID_VideoInputDeviceCategory
);
796 for (i
= 0; i
< 10; i
++)
798 WCHAR szDeviceName
[32], szDeviceVersion
[32], szDevicePath
[10];
800 if (capGetDriverDescriptionW ((WORD
) i
,
801 szDeviceName
, sizeof(szDeviceName
)/sizeof(WCHAR
),
802 szDeviceVersion
, sizeof(szDeviceVersion
)/sizeof(WCHAR
)))
804 IMoniker
* pMoniker
= NULL
;
805 IPropertyBag
* pPropBag
= NULL
;
806 WCHAR dprintf
[] = { 'v','i','d','e','o','%','d',0 };
807 snprintfW(szDevicePath
, sizeof(szDevicePath
)/sizeof(WCHAR
), dprintf
, i
);
808 /* The above code prevents 1 device with a different ID overwriting another */
810 rfp2
.nMediaTypes
= 1;
811 pTypes
= CoTaskMemAlloc(rfp2
.nMediaTypes
* sizeof(REGPINTYPES
));
813 IFilterMapper2_Release(pMapper
);
814 return E_OUTOFMEMORY
;
817 pTypes
[0].clsMajorType
= &MEDIATYPE_Video
;
818 pTypes
[0].clsMinorType
= &MEDIASUBTYPE_None
;
820 rfp2
.lpMediaType
= pTypes
;
822 res
= IFilterMapper2_RegisterFilter(pMapper
,
826 &CLSID_VideoInputDeviceCategory
,
831 OLECHAR wszVfwIndex
[] = { 'V','F','W','I','n','d','e','x',0 };
834 V_UNION(&var
, ulVal
) = i
;
835 res
= IMoniker_BindToStorage(pMoniker
, NULL
, NULL
, &IID_IPropertyBag
, (LPVOID
)&pPropBag
);
837 res
= IPropertyBag_Write(pPropBag
, wszVfwIndex
, &var
);
838 IMoniker_Release(pMoniker
);
841 if (i
== iDefaultDevice
) FIXME("Default device\n");
842 CoTaskMemFree(pTypes
);
848 IFilterMapper2_Release(pMapper
);
849 SetEvent(DEVENUM_populate_handle
);